1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-23 10:09:43 +01:00

Use angle brackets for including tinyxml2.h

Since TinyXML2 is a third-party dependency, we should use angle brackets
and treat it like one.
This commit is contained in:
Misa 2020-07-19 12:03:16 -07:00 committed by Ethan Lee
parent 2af396fb30
commit d455e38715
4 changed files with 4 additions and 4 deletions

View file

@ -16,7 +16,7 @@
#include <SDL.h> #include <SDL.h>
#include <physfs.h> #include <physfs.h>
#include "tinyxml2.h" #include <tinyxml2.h>
/* These are needed for PLATFORM_* crap */ /* These are needed for PLATFORM_* crap */
#if defined(_WIN32) #if defined(_WIN32)

View file

@ -14,7 +14,7 @@
#include "FileSystemUtils.h" #include "FileSystemUtils.h"
#include "tinyxml2.h" #include <tinyxml2.h>
#include "Network.h" #include "Network.h"

View file

@ -5,7 +5,7 @@
#include "MakeAndPlay.h" #include "MakeAndPlay.h"
#include "tinyxml2.h" #include <tinyxml2.h>
#include "FileSystemUtils.h" #include "FileSystemUtils.h"

View file

@ -10,7 +10,7 @@
#include "Script.h" #include "Script.h"
#include "time.h" #include "time.h"
#include "tinyxml2.h" #include <tinyxml2.h>
#include "Enums.h" #include "Enums.h"