mirror of
https://github.com/google/flatbuffers.git
synced 2025-04-08 09:12:14 +08:00
* Fix clang -Wnewline-eof warning * Enable -Wnewline-eof warning Co-authored-by: Derek Bailey <derekbailey@google.com>
17 lines
370 B
C++
17 lines
370 B
C++
#ifndef TESTS_FLEXBUFFERS_TEST_H
|
|
#define TESTS_FLEXBUFFERS_TEST_H
|
|
|
|
namespace flatbuffers {
|
|
namespace tests {
|
|
|
|
void FlexBuffersTest();
|
|
void FlexBuffersReuseBugTest();
|
|
void FlexBuffersFloatingPointTest();
|
|
void FlexBuffersDeprecatedTest();
|
|
void ParseFlexbuffersFromJsonWithNullTest();
|
|
|
|
} // namespace tests
|
|
} // namespace flatbuffers
|
|
|
|
#endif // TESTS_FLEXBUFFERS_TEST_H
|