summaryrefslogtreecommitdiff
path: root/fusion_outputter.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'fusion_outputter.hpp')
-rw-r--r--fusion_outputter.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/fusion_outputter.hpp b/fusion_outputter.hpp
index 3c3d5c4..a1a6927 100644
--- a/fusion_outputter.hpp
+++ b/fusion_outputter.hpp
@@ -39,8 +39,6 @@ struct Outputter
{
return os;
}
-
-
};
template <typename T, typename U>
@@ -48,7 +46,7 @@ std::ostream& operator<<(std::ostream& os, std::map<T, U> map)
{
os << "{" << std::endl;
for (auto&& x : map) {
- os << "\t{" << x.first << ", " << x.second << "}" << std::endl;
+ os << "\t{" << x.first << ", " << "{" << x.second << "}}" << std::endl;
}
os << "}" << std::endl;
return os;