You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[ML] Correct the way internal linkage of constants is achieved (elastic#102)
1. There's no need for constants declared in unnamed namespaces
to be declared static - they already have internal linkage.
2. Constants of type char* pointing to literals should be
declared const char* const - declaring them const char* does
not result in internal linkage because it allows them to be
changed to point at something completely different!
0 commit comments