From b75cb90b6d1a32f3896aea7522e11dddc8f8cf1e Mon Sep 17 00:00:00 2001 From: Anutosh Bhat Date: Tue, 19 Nov 2024 21:54:58 +0530 Subject: [PATCH 1/2] refactor: remove unused #include directives --- src/xinterpreter.cpp | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/src/xinterpreter.cpp b/src/xinterpreter.cpp index b2d9c686..f074829b 100644 --- a/src/xinterpreter.cpp +++ b/src/xinterpreter.cpp @@ -7,17 +7,8 @@ * The full license is in the file LICENSE, distributed with this software. * ************************************************************************************/ -#include -#include // required before including llvm/ExecutionEngine/Orc/LLJIT.h because missing llvm/Object/SymbolicFile.h -#include -#include -#include -#include -#include -#include - #include "xeus/xsystem.hpp" -#include +#include "xeus/xhelper.hpp" #include "xeus-cpp/xbuffer.hpp" #include "xeus-cpp/xeus_cpp_config.hpp" From 3d0ddcf98f85eed9d25a86796cd4cfa6dfe798fd Mon Sep 17 00:00:00 2001 From: Anutosh Bhat Date: Tue, 19 Nov 2024 21:56:21 +0530 Subject: [PATCH 2/2] fix ci --- src/xinterpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xinterpreter.cpp b/src/xinterpreter.cpp index f074829b..2205ff5c 100644 --- a/src/xinterpreter.cpp +++ b/src/xinterpreter.cpp @@ -7,8 +7,8 @@ * The full license is in the file LICENSE, distributed with this software. * ************************************************************************************/ -#include "xeus/xsystem.hpp" #include "xeus/xhelper.hpp" +#include "xeus/xsystem.hpp" #include "xeus-cpp/xbuffer.hpp" #include "xeus-cpp/xeus_cpp_config.hpp"