From 180a43d09721a32ad502f5e583d3b2d797501c00 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Fri, 27 Sep 2019 17:51:44 +0200 Subject: Fixed MSVC warnings (#4400) --- src/ChunkDef.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ChunkDef.h') 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 OwnedEntity; -typedef std::vector cEntityList; -typedef std::map cBlockEntities; +using OwnedEntity = std::unique_ptr; +using cEntityList = std::vector; +using cBlockEntities = std::map; -- cgit v1.2.3