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 12:38:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-05-27 13:07:16 +0300
commit5d8515ed86cebd8af990e3f79362a00f58a1b1a9 (patch)
tree82bb0380e97d50b4a635e6ee487ee406aebcd758 /intern/opensubdiv
parentb5ef644ef6b91787b7ae07c9650690c0978822c9 (diff)
OpenSubdiv: Add move semantic to the namespace
Diffstat (limited to 'intern/opensubdiv')
-rw-r--r--intern/opensubdiv/internal/base/type.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/intern/opensubdiv/internal/base/type.h b/intern/opensubdiv/internal/base/type.h
index 95c307bed6a..b4d514d1a59 100644
--- a/intern/opensubdiv/internal/base/type.h
+++ b/intern/opensubdiv/internal/base/type.h
@@ -30,17 +30,19 @@
namespace blender {
namespace opensubdiv {
-using std::fill;
-using std::make_pair;
-using std::max;
-using std::min;
using std::pair;
using std::stack;
using std::string;
-using std::swap;
using std::unordered_map;
using std::vector;
+using std::fill;
+using std::make_pair;
+using std::max;
+using std::min;
+using std::move;
+using std::swap;
+
} // namespace opensubdiv
} // namespace blender