[Bf-blender-cvs] [5d8515ed86c] master: OpenSubdiv: Add move semantic to the namespace

Sergey Sharybin noreply at git.blender.org
Wed May 27 12:22:28 CEST 2020


Commit: 5d8515ed86cebd8af990e3f79362a00f58a1b1a9
Author: Sergey Sharybin
Date:   Tue May 19 11:38:13 2020 +0200
Branches: master
https://developer.blender.org/rB5d8515ed86cebd8af990e3f79362a00f58a1b1a9

OpenSubdiv: Add move semantic to the namespace

===================================================================

M	intern/opensubdiv/internal/base/type.h

===================================================================

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



More information about the Bf-blender-cvs mailing list