diff options
author | Mattes D <github@xoft.cz> | 2019-09-27 17:51:44 +0200 |
---|---|---|
committer | peterbell10 <peterbell10@live.co.uk> | 2019-09-27 17:51:44 +0200 |
commit | 180a43d09721a32ad502f5e583d3b2d797501c00 (patch) | |
tree | 3b70a9188246ce86b3846c5d9d783171efa1dec3 /src/ChunkDef.h | |
parent | Fix clang8.0 build (#4399) (diff) | |
download | cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar.gz cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar.bz2 cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar.lz cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar.xz cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.tar.zst cuberite-180a43d09721a32ad502f5e583d3b2d797501c00.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkDef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h index bfac29c5e..425e829a5 100644 --- a/src/ChunkDef.h +++ b/src/ChunkDef.h @@ -29,9 +29,9 @@ class cClientHandle; class cBlockEntity; class cChunkCoords; -typedef std::unique_ptr<cEntity> OwnedEntity; -typedef std::vector<OwnedEntity> cEntityList; -typedef std::map<int, cBlockEntity *> cBlockEntities; +using OwnedEntity = std::unique_ptr<cEntity>; +using cEntityList = std::vector<OwnedEntity>; +using cBlockEntities = std::map<size_t, cBlockEntity *>; |