Flex
0.17.9
flex
utils
exception.h
Go to the documentation of this file.
1
15
#ifndef UTILS_EXCEPTION_H_
16
#define UTILS_EXCEPTION_H_
17
18
#define THROW_EXCEPTION_IF(cond, msg) \
19
if (cond) { \
20
throw std::runtime_error(msg); \
21
}
22
23
#endif // UTILS_EXCEPTION_H_
Generated by
1.8.17