We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce127c7 commit 57d7163Copy full SHA for 57d7163
test/test_codegen_plugin.cc
@@ -5,13 +5,13 @@
5
using namespace std::string_view_literals;
6
7
auto ecsact_codegen_plugin_name() -> const char* {
8
- return "txt";
+ return "txt";
9
}
10
11
auto ecsact_codegen_plugin( //
12
ecsact_package_id package_id,
13
ecsact_codegen_write_fn_t write_fn
14
) -> void {
15
- auto test_message = "this is just a test, breathe!"sv;
16
- write_fn(test_message.data(), test_message.size());
+ auto test_message = "this is just a test, breathe!"sv;
+ write_fn(test_message.data(), test_message.size());
17
0 commit comments