[libromdata] Use angle brakcets for #include <pugixml.hpp> instead of double-quotes.

On Linux systems, PugiXML is usually installed system-wide.
This commit is contained in:
David Korth 2025-04-01 02:19:19 -04:00
parent 5aa2d7a43a
commit 1b2137f3d5
6 changed files with 6 additions and 6 deletions

View File

@ -39,7 +39,7 @@
// PugiXML
// NOTE: Cannot forward-declare the PugiXML classes...
#ifdef ENABLE_XML
# include "pugixml.hpp"
# include <pugixml.hpp>
#endif /* ENABLE_XML */
namespace LibRomData {

View File

@ -25,7 +25,7 @@ using namespace LibRpText;
#include "SystemRegion.hpp"
// PugiXML
#include "pugixml.hpp"
#include <pugixml.hpp>
using namespace pugi;
// C++ STL classes

View File

@ -16,7 +16,7 @@
#ifdef ENABLE_XML
// PugiXML
# include "pugixml.hpp"
# include <pugixml.hpp>
using namespace pugi;
#endif /* ENABLE_XML */

View File

@ -14,7 +14,7 @@
#endif
// PugiXML
#include "pugixml.hpp"
#include <pugixml.hpp>
using namespace pugi;
// MSVC: Exception handling for /DELAYLOAD.

View File

@ -18,7 +18,7 @@ using namespace LibRpBase;
using namespace LibRpFile;
// PugiXML
#include "pugixml.hpp"
#include <pugixml.hpp>
using namespace pugi;
// C++ STL classes

View File

@ -26,7 +26,7 @@
// PugiXML
// NOTE: Cannot forward-declare the PugiXML classes...
#ifdef ENABLE_XML
# include "pugixml.hpp"
# include <pugixml.hpp>
#endif /* ENABLE_XML */
namespace LibRomData {