From 9e8a060e5b28a74294685d34cee4df762b8a941f Mon Sep 17 00:00:00 2001 From: sduzh Date: Thu, 7 May 2020 10:38:27 +0800 Subject: [PATCH] Replace std::tr1::unordered_map with std::unordered_map (#3478) --- be/src/runtime/descriptors.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/be/src/runtime/descriptors.h b/be/src/runtime/descriptors.h index 510e0f2f6d..ed63c5060e 100644 --- a/be/src/runtime/descriptors.h +++ b/be/src/runtime/descriptors.h @@ -18,11 +18,9 @@ #ifndef DORIS_BE_RUNTIME_DESCRIPTORS_H #define DORIS_BE_RUNTIME_DESCRIPTORS_H -#include -#include -#include -#include #include +#include +#include #include #include @@ -39,7 +37,6 @@ namespace doris { class ObjectPool; class TDescriptorTable; class TSlotDescriptor; -class TTable; class TTupleDescriptor; class Expr; class RuntimeState; @@ -348,9 +345,9 @@ public: std::string debug_string() const; private: - typedef std::tr1::unordered_map TableDescriptorMap; - typedef std::tr1::unordered_map TupleDescriptorMap; - typedef std::tr1::unordered_map SlotDescriptorMap; + typedef std::unordered_map TableDescriptorMap; + typedef std::unordered_map TupleDescriptorMap; + typedef std::unordered_map SlotDescriptorMap; TableDescriptorMap _tbl_desc_map; TupleDescriptorMap _tuple_desc_map;