Clean up. No more 'tep'.

This commit is contained in:
JoelKatz
2013-01-21 12:26:42 -08:00
parent 16d8ec5ec9
commit a6793b3d3b
2 changed files with 8 additions and 8 deletions

View File

@@ -134,7 +134,7 @@ enum TER // aka TransactionEngineResult
#define isTemMalformed(x) ((x) >= temMALFORMED && (x) < tefFAILURE)
#define isTefFailure(x) ((x) >= tefFAILURE && (x) < terRETRY)
#define isTerRetry(x) ((x) >= terRETRY && (x) < tesSUCCESS)
#define isTesSuccess(x) ((x) >= tesSUCCESS)
#define isTesSuccess(x) ((x) == tesSUCCESS)
#define isTecClaim(x) ((x) >= tecCLAIM)
bool transResultInfo(TER terCode, std::string& strToken, std::string& strHuman);