summaryrefslogtreecommitdiff
path: root/editor/pot_generator.h
diff options
context:
space:
mode:
Diffstat (limited to 'editor/pot_generator.h')
-rw-r--r--editor/pot_generator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/pot_generator.h b/editor/pot_generator.h
index 05d1903dd6..b24eadfd95 100644
--- a/editor/pot_generator.h
+++ b/editor/pot_generator.h
@@ -33,7 +33,7 @@
#include "core/io/file_access.h"
#include "core/templates/hash_map.h"
-#include "core/templates/set.h"
+#include "core/templates/rb_set.h"
//#define DEBUG_POT
@@ -43,7 +43,7 @@ class POTGenerator {
struct MsgidData {
String ctx;
String plural;
- Set<String> locations;
+ RBSet<String> locations;
};
// Store msgid as key and the additional data around the msgid - if it's under a context, has plurals and its file locations.
HashMap<String, Vector<MsgidData>> all_translation_strings;