From e16a991667d8e5c49cafb869d4844b80fc323ed8 Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周六, 16 5月 2020 23:18:22 +0800 Subject: [PATCH] tentative fix for test failing when in submodule --- test/functional/generate-license.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/test/functional/generate-license.cpp b/test/functional/generate-license.cpp index ae42689..cdaa175 100644 --- a/test/functional/generate-license.cpp +++ b/test/functional/generate-license.cpp @@ -43,7 +43,7 @@ ss << " --" PARAM_LICENSE_OUTPUT " " << license_fname_s; ss << " --" PARAM_PROJECT_FOLDER " " << LCC_TEST_LICENSES_PROJECT; - for (int i = 0; i < other_args.size(); i++) { + for (size_t i = 0; i < other_args.size(); i++) { ss << " " << other_args[i]; } cout << "executing :" << ss.str() << endl; -- Gitblit v1.9.1