summaryrefslogtreecommitdiffhomepage
path: root/cmap.h
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-03-05 10:56:19 +0100
committerGitHub <[email protected]>2020-03-05 10:56:19 +0100
commit4f563eefcf4a2feab019aa16fe1ca02076352177 (patch)
treeeb5d4a31358a3dabf9d07dc2a4e389bd1e67b4bb /cmap.h
parent930b89eb6ebd4916ab63cd7d6ff3e4692691ddb2 (diff)
downloadSTC-modified-4f563eefcf4a2feab019aa16fe1ca02076352177.tar.gz
STC-modified-4f563eefcf4a2feab019aa16fe1ca02076352177.zip
Renamed from CMap_STR to CMap_StringKey
Diffstat (limited to 'cmap.h')
-rw-r--r--cmap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmap.h b/cmap.h
index c7f7d93c..b8dcf545 100644
--- a/cmap.h
+++ b/cmap.h
@@ -57,12 +57,12 @@ typedef struct CMapEntry_##tag CMapEntry_##tag
// CMap<CString, Value>:
-#define declare_CMap_STR(...) cdef_MACRO_OVERLOAD(declare_CMap_STR, __VA_ARGS__)
+#define declare_CMap_StringKey(...) cdef_MACRO_OVERLOAD(declare_CMap_StringKey, __VA_ARGS__)
-#define declare_CMap_STR_2(tag, Value) \
+#define declare_CMap_StringKey_2(tag, Value) \
declare_CMap_STR_3(tag, Value, cdef_destroy)
-#define declare_CMap_STR_3(tag, Value, valueDestroy) \
+#define declare_CMap_StringKey_3(tag, Value, valueDestroy) \
declare_CMap_10(tag, CString, Value, valueDestroy, const char*, cstring_getRaw, cstring_compare, cstring_hash, cstring_make, cstring_destroy)