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
path: root/intern
diff options
context:
space:
mode:
authorStefan Werner <stewreo@gmail.com>2017-09-20 22:47:37 +0300
committerStefan Werner <stewreo@gmail.com>2017-09-20 22:47:45 +0300
commitee30a4381f8989ed9f39b4baae9f74e45c9dcdc9 (patch)
tree9853d3d0847a36cd9b6e24c59e3bbd7a459eab50 /intern
parent8ad479a3227e36b201f740a127c08e29950bb219 (diff)
Added extra "const" to satisfy the strict clang version in Xcode 9
Diffstat (limited to 'intern')
-rw-r--r--intern/itasc/kdl/tree.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/itasc/kdl/tree.hpp b/intern/itasc/kdl/tree.hpp
index c8a253fc901..bd35f82d185 100644
--- a/intern/itasc/kdl/tree.hpp
+++ b/intern/itasc/kdl/tree.hpp
@@ -34,7 +34,7 @@ namespace KDL
//Forward declaration
class TreeElement;
// Eigen allocator is needed for alignment of Eigen data types
- typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<std::string, TreeElement> > > SegmentMap;
+ typedef std::map<std::string,TreeElement, std::less<std::string>, Eigen::aligned_allocator<std::pair<const std::string, TreeElement> > > SegmentMap;
class TreeElement
{