cwCommonImpl.h : Changed cwAssert() param named 'cond' to 'C' to fix warning.

This commit is contained in:
kevin 2024-03-25 11:42:22 -04:00
parent 0979b097ba
commit ec418f1d28

View File

@ -138,7 +138,7 @@ namespace cw
{
#define cwAssert(cond) while(1){ if(!(cond)){ cwLogFatal(kAssertFailRC,"Assert failed on condition:%s",#cond ); } break; }
#define cwAssert(C) while(1){ if(!(C)){ cwLogFatal(kAssertFailRC,"Assert failed on condition:%s",#C ); } break; }