aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCAssert.h
blob: f2e1f484893ca67e4c665e0a54bd0bc4c73e3377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __MAILCORE_MCASSERT_H_

#define __MAILCORE_MCASSERT_H_

#ifdef __cplusplus

#define MCAssert(cond) mailcore::assertInteral(__FILE__, __LINE__, cond, #cond)

namespace mailcore {

    void assertInteral(const char * filename, unsigned int line, int cond, const char * condString);
    
}

#endif

#endif