From 37984ece1621fd80c08eefc1a42a42e423b9f47b Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 21 May 2019 14:12:37 -0500 Subject: [PATCH] Use the correct expat location expat.h is (in most Linux distributions, at least) located directly in /usr/include. Because the compiler is called with the src directory in the include path, the include of happens to work but results in the bundled version of the header being used instead of the system version. --- src/libslic3r/Format/AMF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Format/AMF.cpp b/src/libslic3r/Format/AMF.cpp index ff1da37cc..a3f92e4d1 100644 --- a/src/libslic3r/Format/AMF.cpp +++ b/src/libslic3r/Format/AMF.cpp @@ -2,7 +2,7 @@ #include #include #include -#include +#include #include