Skip to content

Commit b82af78

Browse files
authored
fix: bad include in C++ header (#13)
1 parent 9a9a5a8 commit b82af78

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

ecsact/codegen/plugin.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include <cstring>
88
#include <iterator>
99
#include "ecsact/runtime/common.h"
10-
#include "ecsact/codegen_plugin.h"
10+
#include "ecsact/codegen/plugin.h"
1111

1212
namespace ecsact {
1313

test/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ cc_binary(
77
name = "mock_plugin_bin",
88
linkshared = True,
99
copts = copts,
10+
deps = [
11+
"@ecsact_codegen//:plugin",
12+
],
1013
)
1114

1215
ecsact_codegen_plugin(

test/mock_plugin.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#include "ecsact/codegen/plugin.h"
2+
#include "ecsact/codegen/plugin.hh"

0 commit comments

Comments
 (0)