From d8d943929c25151fd6a8aadd6ea4cdbd5065845a Mon Sep 17 00:00:00 2001 From: Amlal Date: Wed, 7 May 2025 09:18:33 +0200 Subject: feat(LibCompiler): Reworking architecture to integrate the Arch() method in the AssemblyInterface. Signed-off-by: Amlal --- dev/LibCompiler/Parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/LibCompiler/Parser.h') diff --git a/dev/LibCompiler/Parser.h b/dev/LibCompiler/Parser.h index 64c46d6..6baff7e 100644 --- a/dev/LibCompiler/Parser.h +++ b/dev/LibCompiler/Parser.h @@ -26,7 +26,7 @@ class ICompilerFrontend { //! @brief Compile a syntax tree ouf of the text. //! Also takes the source file name for metadata. - virtual bool Compile(std::string text, const std::string file) = 0; + virtual bool Compile(std::string text, std::string file) = 0; //! @brief What language are we dealing with? virtual const char* Language() { return kInvalidFrontend; } -- cgit v1.2.3