remove std::map serialization

This commit is contained in:
Robert Haschke 2018-04-28 22:27:22 +02:00
parent 40ca35085a
commit 41e64ed7e1

View File

@ -284,20 +284,5 @@ public:
template <>
void PropertyMap::set<boost::any>(const std::string& name, const boost::any& value);
// provide a serialization method for std::map
template <typename T>
std::ostream& operator<<(std::ostream& os, const std::map<std::string, T>& m) {
os << "{";
bool first = true;
for (const auto& pair : m) {
if (!first)
os << ", ";
os << pair.first << " : " << pair.second;
first = false;
}
os << "}";
return os;
}
} // namespace task_constructor
} // namespace moveit