0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Fix for namspace repetetion which should have been individual namespaces

This commit is contained in:
Yagna Srinath Reddy Battula 2022-12-30 15:54:10 -08:00 committed by Roland Bock
parent 42bd3cc79b
commit bea910e122

View File

@ -481,7 +481,7 @@ def beginHeader(pathToHeader, namespace, nsList):
print("#include <sqlpp11/char_sequence.h>", file=header)
print("", file=header)
for ns in nsList:
print("namespace " + namespace, file=header)
print("namespace " + ns, file=header)
print("{", file=header)
return header