Fix Atlas compile problems with C++11 and clang. Thanks to trompetin17 for investigating this.

Refs #2669

This was SVN commit r16158.
This commit is contained in:
Yves 2015-01-18 09:48:41 +00:00
parent 840c8215b6
commit a72d490759

View File

@ -59,8 +59,8 @@ public:
std::wstring value;
typedef std::multimap<const std::string, const AtNode::Ptr> child_maptype;
typedef std::pair<const std::string, const AtNode::Ptr> child_pairtype;
typedef std::multimap<std::string, AtNode::Ptr> child_maptype;
typedef std::pair<std::string, AtNode::Ptr> child_pairtype;
child_maptype children;