diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2021-01-13 21:37:51 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2021-01-13 21:37:51 +0000 |
| commit | 8b7b60bfd017d8d9fde4866e7716eff0fe5c2ceb (patch) | |
| tree | b7bf017a8f6fd58a648d5a636993febdf3c59912 /AssetLoader/interface | |
| parent | GLTF Loader: made Model::GPUDataInitialized atomic (diff) | |
| download | DiligentTools-8b7b60bfd017d8d9fde4866e7716eff0fe5c2ceb.tar.gz DiligentTools-8b7b60bfd017d8d9fde4866e7716eff0fe5c2ceb.zip | |
Fixed gcc/clang error
Diffstat (limited to 'AssetLoader/interface')
| -rw-r--r-- | AssetLoader/interface/GLTFLoader.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AssetLoader/interface/GLTFLoader.hpp b/AssetLoader/interface/GLTFLoader.hpp index 125c16a..3547775 100644 --- a/AssetLoader/interface/GLTFLoader.hpp +++ b/AssetLoader/interface/GLTFLoader.hpp @@ -490,7 +490,7 @@ private: Node* FindNode(Node* parent, Uint32 index); Node* NodeFromIndex(uint32_t index); - std::atomic_bool GPUDataInitialized = false; + std::atomic_bool GPUDataInitialized{false}; struct BufferInfo { |
