From 02cf37e3e3051c89bb22d26d52503bf4bc9c7dd0 Mon Sep 17 00:00:00 2001 From: Serge Robyns Date: Wed, 9 Aug 2017 17:50:26 +0200 Subject: [PATCH] Fixed mising namespace comment on tablenames (to silence clang-tidy). --- scripts/ddl2cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ddl2cpp b/scripts/ddl2cpp index 158b4b0f..2deae826 100755 --- a/scripts/ddl2cpp +++ b/scripts/ddl2cpp @@ -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)