FFL_RefLog.hpp 274 字节
Newer Older
L
libb 已提交
1 2 3 4 5 6 7 8 9 10 11
#ifndef _FFL_REF_LOG_H_
#define _FFL_REF_LOG_H_

#define ALOG_ASSERT(condition__,format__,__class)  if (!(condition__)) { FFL_LOG_DEBUG_TAG("ref:",format__); }
#if defined(WIN32)
#define ALOGD
#else
#define ALOGD(...)  FFL_LOG_DEBUG_TAG("ref:",##__VA_ARGS__)
#endif

#endif