diff options
Diffstat (limited to 'source/20-codegen-compiler/CodegenUtils.cpp')
-rw-r--r-- | source/20-codegen-compiler/CodegenUtils.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source/20-codegen-compiler/CodegenUtils.cpp b/source/20-codegen-compiler/CodegenUtils.cpp index 0c70cb6..415a183 100644 --- a/source/20-codegen-compiler/CodegenUtils.cpp +++ b/source/20-codegen-compiler/CodegenUtils.cpp @@ -133,14 +133,9 @@ void Utils::ProduceGeneratedHeader(const char* headerFilename, CodegenOutput& he #include <frozen/string.h> #include <frozen/unordered_map.h> using namespace std::literals; +using namespace Metadata; )"""[1]; header.AddOutputThing(std::move(headerOut)); source.AddOutputThing(std::move(sourceOut)); } - -void Utils::ProduceClassTypeInfo(CodegenOutput& source, std::string_view className, const DeclNamespace* ns) { - CodegenOutputThing thing; - - source.AddOutputThing(std::move(thing)); -} |