From 320c691763deb4d0483cca1f82ee8f0f75b26623 Mon Sep 17 00:00:00 2001 From: "r.kuznetsov" Date: Thu, 6 Sep 2018 15:11:38 +0300 Subject: [drape][metal] Removed obsolete std usage, minor fixes. --- drape/index_storage.hpp | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'drape/index_storage.hpp') diff --git a/drape/index_storage.hpp b/drape/index_storage.hpp index 447f28d351..0a5a8714aa 100644 --- a/drape/index_storage.hpp +++ b/drape/index_storage.hpp @@ -1,16 +1,15 @@ #pragma once -#include "std/vector.hpp" -#include "std/cstdint.hpp" +#include +#include namespace dp { - class IndexStorage { public: IndexStorage(); - IndexStorage(vector && initial); + explicit IndexStorage(std::vector && initial); uint32_t Size() const; void Resize(uint32_t size); @@ -22,11 +21,9 @@ public: static uint32_t SizeOfIndex(); private: - vector m_storage; + std::vector m_storage; uint32_t m_size; uint32_t GetStorageSize(uint32_t elementsCount) const; }; - - -} // namespace dp +} // namespace dp -- cgit v1.2.3