diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-01-21 10:48:40 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-01-21 10:48:40 -0500 |
commit | 0b9b5e62e886f9e7e7c17d558876f59f6a6e8c73 (patch) | |
tree | cb81ed4d646c6f0443a8e3b1a40f224811e4ed98 /source/gui_code.cpp | |
parent | 5902a67796000c7546d07fa778b26619c4588c3a (diff) |
update documentation, fix some includes
Diffstat (limited to 'source/gui_code.cpp')
-rw-r--r-- | source/gui_code.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source/gui_code.cpp b/source/gui_code.cpp index 50fd0c8..b797e51 100644 --- a/source/gui_code.cpp +++ b/source/gui_code.cpp @@ -9,6 +9,7 @@ * If not, see <https://www.gnu.org/licenses/>. */ +#include "code.hpp" #include "imgui.h" #include "backends/imgui_impl_sdl.h" #include "backends/imgui_impl_opengl2.h" @@ -16,9 +17,6 @@ #include <string> -extern void compileEditorCode(const std::string& code); -extern void disassembleCode(); - TextEditor editor; // file.cpp static std::string editorCompiled; |