From f1d6bfaf9792c341e9a4023fc43fe25ee3387057 Mon Sep 17 00:00:00 2001 From: John Rockefeller Date: Wed, 6 Sep 2017 23:18:42 -0400 Subject: [PATCH] Replace backslash in file paths to slash This fix makes it possible to cross-compile the software on multiple OSs. Windows should also be able to handle this change just fine. --- src/file.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/file.cpp b/src/file.cpp index 412599f..56de1c2 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -22,7 +22,7 @@ #include "file.h" #if defined(_MSC_VER) -#include "_MSC_VER\config.h" +#include "_MSC_VER/config.h" #endif // _MSC_VER #include #include @@ -35,11 +35,11 @@ #include "universalhdr.h" #include "unzip.h" #include "zlib.h" -#include "libelf\libelf.h" -#include "libelf\gelf.h" +#include "libelf/libelf.h" +#include "libelf/gelf.h" #include "libdwarf.h" -#include "Debugger\ELFManager.h" -#include "debugger\DBGManager.h" +#include "Debugger/ELFManager.h" +#include "debugger/DBGManager.h" // Private function prototypes -- 2.20.1