Remove clang-tidy comments from vk_enum_string_helper.h

Not needed. They only made sense in the context of VVL.
This commit is contained in:
Juan Ramos 2023-08-23 12:26:20 -06:00 committed by Juan Ramos
parent 2396306278
commit 8ea7803544
2 changed files with 2 additions and 6 deletions

View file

@ -23,8 +23,6 @@ class EnumStringHelperOutputGenerator(BaseGenerator):
//
// SPDX-License-Identifier: Apache-2.0
''')
out.append('// NOLINTBEGIN') # Wrap for clang-tidy to ignore
out.append('''
#pragma once
#ifdef __cplusplus
@ -107,6 +105,4 @@ static inline std::string string_{bitmask.flagName}({bitmask.flagName} input_val
}}\n''')
out.extend([f'#endif //{bitmask.protect}\n'] if bitmask.protect else [])
out.append('#endif // __cplusplus\n')
out.append('// NOLINTEND') # Wrap for clang-tidy to ignore
self.write("".join(out))