diff options
author | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:03:22 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-05-20 15:03:22 -0500 |
commit | a9bdcc33013b5e1e76571ee1104bd8c7f278e775 (patch) | |
tree | 5c71b678e8180cc49dd6a8ad7bc27ce1abaf24ad /src/system.hh.in | |
parent | 1b83c684fbb88b40a4b3b7114a9116b0e582bc67 (diff) | |
download | fork-ledger-a9bdcc33013b5e1e76571ee1104bd8c7f278e775.tar.gz fork-ledger-a9bdcc33013b5e1e76571ee1104bd8c7f278e775.tar.bz2 fork-ledger-a9bdcc33013b5e1e76571ee1104bd8c7f278e775.zip |
Work around collision between Format's put & Graph
Diffstat (limited to 'src/system.hh.in')
-rw-r--r-- | src/system.hh.in | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/system.hh.in b/src/system.hh.in index e81dfc00..35396c90 100644 --- a/src/system.hh.in +++ b/src/system.hh.in @@ -184,18 +184,10 @@ typedef std::ostream::pos_type ostream_pos_type; #include <boost/filesystem/operations.hpp> #include <boost/filesystem/path.hpp> -#if !(defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__) #include <boost/foreach.hpp> -#endif - +#include <boost/format.hpp> #include <boost/function.hpp> -#include <boost/graph/adjacency_list.hpp> -#include <boost/graph/filtered_graph.hpp> -#include <boost/graph/dijkstra_shortest_paths.hpp> -#include <boost/graph/graphviz.hpp> - -#include <boost/format.hpp> #include <boost/intrusive_ptr.hpp> #include <boost/iostreams/stream.hpp> @@ -237,11 +229,10 @@ typedef std::ostream::pos_type ostream_pos_type; #if HAVE_GETTEXT #include <libintl.h> #define _(str) gettext(str) -#define _f(str) boost::format(gettext(str)) #else #define _(str) str -#define _f(str) boost::format(str) #endif +#define _f(str) boost::format(_(str)) #if HAVE_BOOST_SERIALIZATION |