mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 04:04:19 +00: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
|