moved function to namespace (#8068)

This commit is contained in:
Artem Shilkin
2023-09-29 17:50:06 +03:00
committed by GitHub
parent c5441dc199
commit bcb9ef1876
3 changed files with 8 additions and 6 deletions

View File

@@ -13,7 +13,7 @@
#define FLATBUFFERS_NO_FILE_TESTS
#else
#define TEST_OUTPUT_LINE(...) \
do { printf(__VA_ARGS__); printf("\n"); } while(!IsConstTrue(true))
do { printf(__VA_ARGS__); printf("\n"); } while(!flatbuffers::IsConstTrue(true))
#endif
#define TEST_EQ(exp, val) TestEq(exp, val, "'" #exp "' != '" #val "'", __FILE__, __LINE__, "")