Fix Clang and GCC errors.

This commit is contained in:
Kevin Ring 2021-02-28 23:10:53 +11:00
parent 1f2eb257ef
commit 1a62ae6dc4
1 changed files with 6 additions and 0 deletions

View File

@ -12,10 +12,16 @@
#include <rapidjson/writer.h>
#include <thread>
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable:4244)
#endif
#include <picosha2.h>
#ifdef _MSC_VER
#pragma warning(pop)
#endif
using namespace CesiumAsync;
using namespace CesiumIonClient;