The 85500 commit causes build error the build when NDEBUG is not
defined.
This is due to an issue in AST/TemplateBase.h
The Kind enum is declared conditionally, but used in many places:
#ifndef NDEBUG
enum Kind {
K_None,
K_DeclaratorInfo,
K_Expression
} Kind;
#endif
Regards
-- Jean-Daniel