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:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-05-19 13:12:48 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-05-27 13:07:16 +0300
commit16aef5dc4ae7d8dc0347fc6cd3787c17b71ed169 (patch)
tree61a6660458b21972d6aed34be92f815e73fa9ccf /intern/opensubdiv
parentad4cef38e3ebe3998d6e5e2c8edee42670b85991 (diff)
OpenSubdiv: Allow use of regular ordered map
Diffstat (limited to 'intern/opensubdiv')
-rw-r--r--intern/opensubdiv/internal/base/type.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/intern/opensubdiv/internal/base/type.h b/intern/opensubdiv/internal/base/type.h
index b4d514d1a59..17e941a171d 100644
--- a/intern/opensubdiv/internal/base/type.h
+++ b/intern/opensubdiv/internal/base/type.h
@@ -21,6 +21,7 @@
#include <algorithm>
#include <cassert>
+#include <map>
#include <stack>
#include <string>
#include <unordered_map>
@@ -30,6 +31,7 @@
namespace blender {
namespace opensubdiv {
+using std::map;
using std::pair;
using std::stack;
using std::string;