Merge pull request #326 from alexzk1/master

Missing includes
master
Marc 2021-11-07 00:16:34 +00:00 committed by GitHub
commit bde82a503c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#ifndef VOXEL_BUFFER_H #ifndef VOXEL_BUFFER_H
#define VOXEL_BUFFER_H #define VOXEL_BUFFER_H
#include <memory>
#include "voxel_buffer_internal.h" #include "voxel_buffer_internal.h"
class VoxelTool; class VoxelTool;

View File

@ -1,6 +1,7 @@
#ifndef VOXEL_DATA_BLOCK_H #ifndef VOXEL_DATA_BLOCK_H
#define VOXEL_DATA_BLOCK_H #define VOXEL_DATA_BLOCK_H
#include <memory>
#include "../storage/voxel_buffer_internal.h" #include "../storage/voxel_buffer_internal.h"
#include "../util/macros.h" #include "../util/macros.h"
#include "voxel_ref_count.h" #include "voxel_ref_count.h"

View File

@ -9,6 +9,7 @@
#include <core/ustring.h> #include <core/ustring.h>
#include <unordered_map> #include <unordered_map>
#include <vector> #include <vector>
#include <memory>
namespace std { namespace std {
template <> template <>