From ef11c2f8ec2adf0d5c6bfbf1f35812231d9470f3 Mon Sep 17 00:00:00 2001 From: DragonValley Date: Sat, 15 Jul 2017 05:53:26 +0200 Subject: [PATCH 1/2] Update on html5-printer.cpp Instead of: #include , it is better to go with #include "tinyxml2.h" so it doesn't search for tinyxml2 library in system libraries but the current directory. --- contrib/html5-printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/html5-printer.cpp b/contrib/html5-printer.cpp index 7728b69..92cff2b 100644 --- a/contrib/html5-printer.cpp +++ b/contrib/html5-printer.cpp @@ -40,7 +40,7 @@ distribution. */ -#include +#include "tinyxml2.h" #include #if defined (_MSC_VER) From f0f506fe5a75003309a3b6eebe3e652daf261b65 Mon Sep 17 00:00:00 2001 From: DragonValley Date: Wed, 19 Jul 2017 22:24:23 +0200 Subject: [PATCH 2/2] Update html5-printer.cpp --- contrib/html5-printer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/html5-printer.cpp b/contrib/html5-printer.cpp index 92cff2b..e9a423d 100644 --- a/contrib/html5-printer.cpp +++ b/contrib/html5-printer.cpp @@ -40,7 +40,7 @@ distribution. */ -#include "tinyxml2.h" +#include "../tinyxml2.h" #include #if defined (_MSC_VER)