hi i have a bunch of compile time asserts and do something like
CASSERT(isTrue) or CASSERT2(isTrue, prefix_) in GCC i get many "warning 'prefix_LineNumber' defined but not used" is there a way i can hide warnings for compile time asserts? i had no luck searching the gcc documentation then thought i may hack something by having the var automatically used globally inside the same macro but i couldnt think of any hacks.
Does anyone know a solution to hide that warning in GCC?