diff options
author | Treeston <treeston.mmoc@gmail.com> | 2020-08-23 15:04:23 +0200 |
---|---|---|
committer | Treeston <treeston.mmoc@gmail.com> | 2020-08-23 15:05:04 +0200 |
commit | 91744de3162bab23d7c5a0dd65fc8b4249eb803a (patch) | |
tree | d689da90ceb67946887c950493e36c0d6a37d3b0 /contrib | |
parent | 6d295629cf01cc23e9c6c521c767a4fa6fd0eb41 (diff) |
Common/Utilities: Move EnumUtils' implementation struct from Trinity::Impl to Trinity::Impl::EnumUtilsImpl. This avoids confusing name clashes for other implementations in sub-namespaces of Trinity::Impl.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/enumutils_describe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/enumutils_describe.py b/contrib/enumutils_describe.py index 443b8ba430c..d6923b87dcc 100644 --- a/contrib/enumutils_describe.py +++ b/contrib/enumutils_describe.py @@ -108,7 +108,7 @@ def processFile(path, filename): output.write('#include "SmartEnum.h"\n') output.write('#include <stdexcept>\n') output.write('\n') - output.write('namespace Trinity::Impl\n') + output.write('namespace Trinity::Impl::EnumUtilsImpl\n') output.write('{\n') for name, values in enums: tag = ('data for enum \'%s\' in \'%s.h\' auto-generated' % (name, filename)) |