Skip to content

Commit 98bc446

Browse files
committed
[cpp] Minor fix to cpp generator output formatting.
1 parent 5da5f77 commit 98bc446

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/cpp/CppGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ private static void generateGroupClassHeader(
309309
indent + "#else\n" +
310310
indent + " template<class Func> inline void forEach(Func&& func)\n" +
311311
indent + " {\n" +
312-
indent + " while(hasNext())\n" +
312+
indent + " while (hasNext())\n" +
313313
indent + " {\n" +
314314
indent + " next(); func(*this);\n" +
315315
indent + " }\n" +

0 commit comments

Comments
 (0)