Enum Constant Name Length Limit-Never Mind

Does anyone know what the enum constant name length limit is in the VCV Rack SDK compiler tools? I have a strange problem in my module cpp code that could be explained if the compiler is truncating my fairly long param constant names. I seem to remember having such a problem years ago on one of my coding projects.

Never mind. I have about 65 enum’d items and I used the wrong names in one section of code. Apparently there is no truncation of enum constant names at least out to 35 characters.

Identifier names, like enum names, are required by the C++ standard to be at least 1024. GCC has no limit.