diff options
-rw-r--r-- | buildtools/codegen/main.cpp | 2 | ||||
-rw-r--r-- | source-common/LookupTable.hpp (renamed from buildtools/codegen/CodegenLookupTable.hpp) | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/buildtools/codegen/main.cpp b/buildtools/codegen/main.cpp index ed8cbbe..334b195 100644 --- a/buildtools/codegen/main.cpp +++ b/buildtools/codegen/main.cpp @@ -1,11 +1,11 @@ #include "CodegenConfig.hpp" #include "CodegenDecl.hpp" -#include "CodegenLookupTable.hpp" #include "CodegenInput.inl" #include "CodegenOutput.inl" #include <Enum.hpp> +#include <LookupTable.hpp> #include <Macros.hpp> #include <ScopeGuard.hpp> #include <Utils.hpp> diff --git a/buildtools/codegen/CodegenLookupTable.hpp b/source-common/LookupTable.hpp index 2b6a993..c50e28e 100644 --- a/buildtools/codegen/CodegenLookupTable.hpp +++ b/source-common/LookupTable.hpp @@ -1,5 +1,8 @@ #pragma once +#include <robin_hood.h> +#include <string_view> + // BIDI stands for bi-directional #define BIDI_LUT_DECL(name, aType, aCount, bType, bCount) \ int gLut_##name##_A2B[aCount]; \ |