https://github.com/root-project/root
Raw File
Tip revision: 51dc84643fbbe16f6b3ca938a013df59ff766b5e authored by Philippe Canal on 21 May 2024, 19:16:57 UTC
io: Avoid infinite recursion in TFile::Open
Tip revision: 51dc846
checkAssertsNDEBUG.cxx
#include "TError.h"

int main()
{
#ifdef NDEBUG
   Error("checkAssertsNDEBUG", "Compiling without assertions (NDEBUG flag is enabled) but asserts are configured");
   return 1;
#else
   return 0;
#endif
}
back to top