Source location info
| 57 | |
| 58 | // Source location info |
| 59 | struct SourceLocation { |
| 60 | const char* mFile; |
| 61 | int mLine; |
| 62 | |
| 63 | SourceLocation(const char* file = "", int line = 0) FL_NOEXCEPT |
| 64 | : mFile(file), mLine(line) {} |
| 65 | }; |
| 66 | |
| 67 | // Result of an assertion |
| 68 | struct AssertResult { |
no outgoing calls