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

Fixed mising namespace comment on tablenames (to silence clang-tidy).

This commit is contained in:
Serge Robyns 2017-08-09 17:50:26 +02:00
parent 307da227ac
commit 02cf37e3e3

View File

@ -318,7 +318,7 @@ for create in tableCreations:
traitslist.append(NAMESPACE + '::tag::require_insert')
print(' using _traits = ' + NAMESPACE + '::make_traits<' + ', '.join(traitslist) + '>;', file=header)
print(' };', file=header)
print(' }', file=header)
print(' } // namespace ' + tableNamespace, file=header)
print('', file=header)
print(' struct ' + tableClass + ': ' + NAMESPACE + '::table_t<' + tableTemplateParameters + '>', file=header)