Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenlib/BLI_dot_export.hh')
-rw-r--r--source/blender/blenlib/BLI_dot_export.hh3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_dot_export.hh b/source/blender/blenlib/BLI_dot_export.hh
index 08c37fec01e..8da0ed6df14 100644
--- a/source/blender/blenlib/BLI_dot_export.hh
+++ b/source/blender/blenlib/BLI_dot_export.hh
@@ -27,7 +27,6 @@
#include "BLI_map.hh"
#include "BLI_optional.hh"
#include "BLI_set.hh"
-#include "BLI_string_map.hh"
#include "BLI_utility_mixins.hh"
#include "BLI_vector.hh"
@@ -57,7 +56,7 @@ class AttributeList {
void set(StringRef key, StringRef value)
{
- m_attributes.add_override(key, value);
+ m_attributes.add_overwrite(key, value);
}
};