From 761a04ce001ac60f9808d7be7d3485069651c276 Mon Sep 17 00:00:00 2001 From: elsid Date: Wed, 13 Apr 2022 18:37:22 +0200 Subject: [PATCH] Remove duplicated enum definition --- components/esm/common.hpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/components/esm/common.hpp b/components/esm/common.hpp index 3a8894e321..af19572c03 100644 --- a/components/esm/common.hpp +++ b/components/esm/common.hpp @@ -40,17 +40,6 @@ namespace ESM std::uint64_t size; }; - enum VarType - { - VT_Unknown = 0, - VT_None, - VT_Short, // stored as a float, kinda - VT_Int, - VT_Long, // stored as a float - VT_Float, - VT_String - }; - std::string printName(const std::uint32_t typeId); }