summaryrefslogtreecommitdiff
path: root/fusion_outputter.hpp
diff options
context:
space:
mode:
authorDennis Brentjes <d.brentjes@gmail.com>2014-05-27 16:14:46 +0200
committerDennis Brentjes <d.brentjes@gmail.com>2014-05-27 16:14:46 +0200
commit79af684323abfa10abfc31003ab47fd89a03d625 (patch)
treebfcdcff6b2fea6d1d3481d87629b90f239b86d1f /fusion_outputter.hpp
parent84c15aecc7d296d25b7fd5ead6730f8d132d350f (diff)
downloadgeneric-gui-79af684323abfa10abfc31003ab47fd89a03d625.tar.gz
generic-gui-79af684323abfa10abfc31003ab47fd89a03d625.tar.bz2
generic-gui-79af684323abfa10abfc31003ab47fd89a03d625.zip
Tweaked the forms look and feal a bit and changed the way models are created.
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;