hewei před 6 roky
rodič
revize
ab4657cbe5
1 změnil soubory, kde provedl 3 přidání a 4 odebrání
  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> {