merge changes from 1.11.8

This commit is contained in:
Günter Obiltschnig 2023-10-02 08:20:04 +02:00
parent ee7e8dc29f
commit 58af2ebc46
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ void CodeGenerator::writeEndNameSpace(const std::string& nameSpace) const
auto ns = splitNameSpace(nameSpace);
for (const auto& s: ns)
{
(void) s; // avoid unused variable warning
_stream << "} ";
}
_stream << "// namespace " << nameSpace << "\n";

View File

@ -78,7 +78,7 @@ protected:
helpFormatter.setHeader(
"\n"
"The POCO C++ Libraries ActiveRecord ORM Compiler.\n"
"Copyright (c) 2020-2022 by Applied Informatics Software Engineering GmbH.\n"
"Copyright (c) 2020-2023 by Applied Informatics Software Engineering GmbH.\n"
"All rights reserved.\n\n"
"This program generates C++ source code from an ActiveRecord "
"XML definition. "