12345678910111213141516171819202122232425262728293031 |
- #ifndef TWOBLUECUBES_CATCH_ASSERTIONINFO_H_INCLUDED
- #define TWOBLUECUBES_CATCH_ASSERTIONINFO_H_INCLUDED
- #include "catch_result_type.h"
- #include "catch_common.h"
- #include "catch_stringref.h"
- namespace Catch {
- struct AssertionInfo
- {
- StringRef macroName;
- SourceLineInfo lineInfo;
- StringRef capturedExpression;
- ResultDisposition::Flags resultDisposition;
-
-
-
- };
- }
- #endif
|