diff options
author | Treeston <treeston.mmoc@gmail.com> | 2020-08-23 15:04:23 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-04 00:27:12 +0100 |
commit | 03b5c17863583246181e71260ab0cff9adc70ccb (patch) | |
tree | 31bedccc736607d0acb020145b98ff6f1e4a2c6d /contrib | |
parent | 27405870e0d331fcd73845d200a061600dcfdd00 (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.
(cherry picked from commit 91744de3162bab23d7c5a0dd65fc8b4249eb803a)
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 203cfca8538..60e36cdf6fd 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)) |