4675. [cleanup] Don't use C++ keyword class. [RT #45726]

This commit is contained in:
Mark Andrews
2017-08-10 08:42:04 +10:00
parent b2a5df8d4b
commit ff8d856db0
9 changed files with 86 additions and 80 deletions

View File

@@ -359,11 +359,11 @@ t_main(int argc, char **argv)
}
void
t_assert(const char *component, int anum, int class, const char *what, ...) {
t_assert(const char *component, int anum, int tclass, const char *what, ...) {
va_list args;
char buf[T_BIGBUF];
(void)printf("T:%s:%d:%s\n", component, anum, class == T_REQUIRED ?
(void)printf("T:%s:%d:%s\n", component, anum, tclass == T_REQUIRED ?
"A" : "C");
/*