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>
19 lines
401 B
C++
19 lines
401 B
C++
#ifndef TESTS_PROTO_TEST_H
|
|
#define TESTS_PROTO_TEST_H
|
|
|
|
#include <string>
|
|
|
|
namespace flatbuffers {
|
|
namespace tests {
|
|
|
|
void ParseProtoTest(const std::string& tests_data_path);
|
|
void ParseProtoTestWithSuffix(const std::string& tests_data_path);
|
|
void ParseProtoTestWithIncludes(const std::string& tests_data_path);
|
|
void ParseProtoBufAsciiTest();
|
|
|
|
|
|
} // namespace tests
|
|
} // namespace flatbuffers
|
|
|
|
#endif
|