Skip to content

Commit

Permalink
Merge pull request #189 from CesiumGS/use-std-byte
Browse files Browse the repository at this point in the history
Use bytes for raw data
  • Loading branch information
kring authored Mar 5, 2021
2 parents 84a77df + 9a363fa commit 4d615ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/CesiumRuntime/Private/CesiumGltfComponent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

#define STB_IMAGE_RESIZE_IMPLEMENTATION
#include <stb_image_resize.h>
#include <cstddef>

using namespace CesiumGltf;

Expand Down
1 change: 1 addition & 0 deletions Source/CesiumRuntime/Private/UnrealAssetAccessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "UnrealConversions.h"
#include <set>
#include <optional>
#include <cstddef>

static CesiumAsync::HttpHeaders parseHeaders(const TArray<FString>& unrealHeaders) {
CesiumAsync::HttpHeaders result;
Expand Down
1 change: 1 addition & 0 deletions Source/CesiumRuntime/Public/UnrealAssetAccessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

#include "CesiumAsync/IAssetAccessor.h"
#include "CesiumAsync/AsyncSystem.h"
#include <cstddef>

class CESIUMRUNTIME_API UnrealAssetAccessor : public CesiumAsync::IAssetAccessor
{
Expand Down

0 comments on commit 4d615ad

Please sign in to comment.