From: =?utf-8?q?Timo_R=C3=B6hling?= <timo.roehling@fkie.fraunhofer.de>
Date: Thu, 1 Oct 2020 16:46:48 +0200
Subject: Fix third party includes

Forwarded: not-needed
---
 tests/tester.cc | 2 +-
 tiny_gltf.h     | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/tests/tester.cc b/tests/tester.cc
index b43cf4c..f40645a 100644
--- a/tests/tester.cc
+++ b/tests/tester.cc
@@ -4,7 +4,7 @@
 #include "tiny_gltf.h"
 
 // Nlohmann json(include ../json.hpp)
-#include "json.hpp"
+#include <nlohmann/json.hpp>
 
 #define CATCH_CONFIG_MAIN  // This tells Catch to provide a main() - only do this in one cpp file
 #include "catch.hpp"
diff --git a/tiny_gltf.h b/tiny_gltf.h
index b83daa1..b22c6af 100644
--- a/tiny_gltf.h
+++ b/tiny_gltf.h
@@ -1568,7 +1568,7 @@ class TinyGLTF {
 
 #ifndef TINYGLTF_NO_INCLUDE_JSON
 #ifndef TINYGLTF_USE_RAPIDJSON
-#include "json.hpp"
+#include <nlohmann/json.hpp>
 #else
 #ifndef TINYGLTF_NO_INCLUDE_RAPIDJSON
 #include "document.h"
@@ -1587,13 +1587,13 @@ class TinyGLTF {
 
 #ifndef TINYGLTF_NO_STB_IMAGE
 #ifndef TINYGLTF_NO_INCLUDE_STB_IMAGE
-#include "stb_image.h"
+#include <stb_image.h>
 #endif
 #endif
 
 #ifndef TINYGLTF_NO_STB_IMAGE_WRITE
 #ifndef TINYGLTF_NO_INCLUDE_STB_IMAGE_WRITE
-#include "stb_image_write.h"
+#include <stb_image_write.h>
 #endif
 #endif
 
