#include <fs/sys/fsLog.h>
#include <fs/sys/fsAssert.h>
#include <queue>
#include <string>
#include <stdarg.h>
#include <windows.h>
Include dependency graph for fsLog.cpp:
Go to the source code of this file.
Namespaces | |
namespace | fs |
namespace | fs::sys |
Classes | |
class | fs::sys::LogImpl_t |
Implementation for Log_t class. More... | |
Defines | |
#define | FS_VERIFY_RETURN(exp) if(!(exp)) { FS_ASSERT_MSG(0, #exp "<return>"); return; } |
#define | FS_VERIFY_RETURN_VAL(exp, ret) if(!(exp)) { FS_ASSERT_MSG(0, #exp "<returns:>" #ret); return (ret); } |
#define FS_VERIFY_RETURN | ( | exp | ) | if(!(exp)) { FS_ASSERT_MSG(0, #exp "<return>"); return; } |
#define FS_VERIFY_RETURN_VAL | ( | exp, | |||
ret | ) | if(!(exp)) { FS_ASSERT_MSG(0, #exp "<returns:>" #ret); return (ret); } |