diff options
author | John Wiegley <johnw@newartisans.com> | 2014-08-26 14:14:02 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2014-08-26 14:14:02 -0500 |
commit | 439923368b016ed49ae7723eb4d32fdae3e8e579 (patch) | |
tree | 81fa903cbd0d2501061614e2b8598735fbfba559 /src/account.h | |
parent | fa46f3442d2fa9e462c14564aecbfe34c16d18b2 (diff) | |
parent | 38557ee63273dcdef22b136c5f424802c7ff6e03 (diff) | |
download | fork-ledger-439923368b016ed49ae7723eb4d32fdae3e8e579.tar.gz fork-ledger-439923368b016ed49ae7723eb4d32fdae3e8e579.tar.bz2 fork-ledger-439923368b016ed49ae7723eb4d32fdae3e8e579.zip |
Merge pull request #318 from joegallo/master
Compilation errors with boost 1.56
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account.h b/src/account.h index d1377c39..4a4041b7 100644 --- a/src/account.h +++ b/src/account.h @@ -261,7 +261,7 @@ public: mutable optional<xdata_t> xdata_; bool has_xdata() const { - return xdata_; + return xdata_ != NULL; } void clear_xdata(); xdata_t& xdata() { |