فهرست منبع

Merge branch 'dev'

hewei 6 سال پیش
والد
کامیت
9514c18b4e
1فایلهای تغییر یافته به همراه3 افزوده شده و 4 حذف شده
  1. 3 4
      base/hstring.h

+ 3 - 4
base/hstring.h

@@ -43,15 +43,14 @@ public:
 };
 }
 
-// MAP
 #ifdef USE_MULTIMAP
-#define MAP     std::MultiMap
+#define HMAP    std::MultiMap
 #else
-#define MAP     std::map
+#define HMAP    std::map
 #endif
 
 // KeyValue
-typedef MAP<std::string, std::string> KeyValue;
+typedef HMAP<std::string, std::string> KeyValue;
 
 // std::map<std::string, std::string, StringCaseLess>
 class StringCaseLess : public std::binary_function<std::string, std::string, bool> {