Commit 8cfe9d6d by DevTech Committed by omarzohdi

Fixed compilation failures when using Visual Studio 2019

Fixed compilation issue in PVRCore/texture/TextureHeader.h seen when compiling with Visual Studio 2019 reported by rcdailey. Adding an include for <string> fixes the issue.
parent 2132b5cc
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
#include <algorithm> #include <algorithm>
#include <cstdint> #include <cstdint>
#include <cstddef> #include <cstddef>
#include <string>
namespace pvr { namespace pvr {
/// <summary>Flag interpreted as All mipmap levels.</summary> /// <summary>Flag interpreted as All mipmap levels.</summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment