diff options
author | Johann Klähn <kljohann@gmail.com> | 2015-05-10 12:45:28 +0200 |
---|---|---|
committer | Johann Klähn <kljohann@gmail.com> | 2015-05-10 12:50:19 +0200 |
commit | 48aec0f093ff6494a3e4f7cd5166cb4a27c16814 (patch) | |
tree | 6b3ffbb5271ee7b30afe27d24339551886fe6c2e /src/item.h | |
parent | c586e1e494487c43cf6da886739f69bb91a7e15b (diff) | |
download | fork-ledger-48aec0f093ff6494a3e4f7cd5166cb4a27c16814.tar.gz fork-ledger-48aec0f093ff6494a3e4f7cd5166cb4a27c16814.tar.bz2 fork-ledger-48aec0f093ff6494a3e4f7cd5166cb4a27c16814.zip |
boost::none_t no longer convertible from literal 0 in 1.58
Instead we use boost::none, which has been documented since boost 1.34.0.
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -174,11 +174,7 @@ public: static bool use_aux_date; virtual bool has_date() const { -#if BOOST_VERSION >= 105600 - return _date != NULL; -#else - return _date; -#endif + return _date != boost::none; } virtual date_t date() const { |