Skip to content

Commit fcd024b

Browse files
author
Andrew Kent
authored
emit missing '\n' in cpp includes
Without the added newlines this generates C++ which does not always compile, e.g. ``` compiler error: cannot compile source file "./soufflepxyz.cpp" ./soufflepxyz.cpp:4:36: warning: extra tokens at end of #include directive [-Wextra-tokens] #include "souffle/profile/Logger.h"#include "souffle/profile/ProfileEvent.h" ^ ```
1 parent 2fdbd07 commit fcd024b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/synthesiser/Synthesiser.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -2424,8 +2424,8 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
24242424
}
24252425

24262426
if (Global::config().has("profile") || Global::config().has("live-profile")) {
2427-
os << "#include \"souffle/profile/Logger.h\"";
2428-
os << "#include \"souffle/profile/ProfileEvent.h\"";
2427+
os << "#include \"souffle/profile/Logger.h\"\n";
2428+
os << "#include \"souffle/profile/ProfileEvent.h\"\n";
24292429
}
24302430

24312431
os << "\n";

0 commit comments

Comments
 (0)