diff options
author | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:15:54 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:15:54 -0500 |
commit | f579e6ddacb08ffeb124a9ec87b7faf7e9683a3c (patch) | |
tree | 0be9e3f7d7859a52976eb1b861d002b511355d8e /src/history.cc | |
parent | a9bdcc33013b5e1e76571ee1104bd8c7f278e775 (diff) | |
download | fork-ledger-f579e6ddacb08ffeb124a9ec87b7faf7e9683a3c.tar.gz fork-ledger-f579e6ddacb08ffeb124a9ec87b7faf7e9683a3c.tar.bz2 fork-ledger-f579e6ddacb08ffeb124a9ec87b7faf7e9683a3c.zip |
Work around inclusion ordering bug with Xpressive
Diffstat (limited to 'src/history.cc')
-rw-r--r-- | src/history.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/history.cc b/src/history.cc index cf92d096..25335680 100644 --- a/src/history.cc +++ b/src/history.cc @@ -34,9 +34,7 @@ #include <boost/graph/adjacency_list.hpp> #include <boost/graph/filtered_graph.hpp> #include <boost/graph/dijkstra_shortest_paths.hpp> -#if 0 #include <boost/graph/graphviz.hpp> -#endif #include "history.h" @@ -583,7 +581,6 @@ private: void commodity_history_impl_t::print_map(std::ostream& out, const datetime_t& moment) { -#if 0 if (moment.is_not_a_date_time()) { write_graphviz(out, price_graph, label_writer<NameMap>(get(vertex_name, price_graph))); @@ -593,7 +590,6 @@ void commodity_history_impl_t::print_map(std::ostream& out, (get(edge_weight, price_graph), pricemap, ratiomap, moment)); write_graphviz(out, fg, label_writer<FNameMap>(get(vertex_name, fg))); } -#endif } } // namespace ledger |