Browse Source

HPCC-14388 Linux build error (missing " terminator on #pragma)

Signed-off-by: Jake Smith <jake.smith@lexisnexis.com>
Jake Smith 9 years ago
parent
commit
2b98cff443
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ecl/hqlcpp/hqlcpp.cpp

+ 1 - 1
ecl/hqlcpp/hqlcpp.cpp

@@ -11687,7 +11687,7 @@ void HqlCppTranslator::buildCppFunctionDefinition(BuildCtx &funcctx, IHqlExpress
     if (location)
         funcctx.addLine();
     funcctx.addQuoted("#if defined(__clang__) || (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 2))\n"
-                      "#pragma GCC diagnostic ignored \"-Wall\"\n
+                      "#pragma GCC diagnostic ignored \"-Wall\"\n"
                       "#pragma GCC diagnostic ignored \"-Wextra\"\n"
                       "#endif\n");
 }