summaryrefslogtreecommitdiff
path: root/src/post.h
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2015-07-27 20:37:16 +0100
committerJonathan Wakely <jwakely@redhat.com>2015-07-27 20:37:16 +0100
commitbcaca24de4264f89a94069701361988007e22e58 (patch)
treeeee91e88c78ad7eb936272697261dbdea1ec3769 /src/post.h
parent5b31641a75c3b603d53350965ff4867ac05f77e5 (diff)
downloadfork-ledger-bcaca24de4264f89a94069701361988007e22e58.tar.gz
fork-ledger-bcaca24de4264f89a94069701361988007e22e58.tar.bz2
fork-ledger-bcaca24de4264f89a94069701361988007e22e58.zip
Convert boost::optional objects to bool explicitly.
Fixes #417.
Diffstat (limited to 'src/post.h')
-rw-r--r--src/post.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/post.h b/src/post.h
index 0fb45e90..5f22fa3c 100644
--- a/src/post.h
+++ b/src/post.h
@@ -205,11 +205,7 @@ public:
mutable optional<xdata_t> xdata_;
bool has_xdata() const {
-#if BOOST_VERSION >= 105600
- return xdata_ != NULL;
-#else
- return xdata_;
-#endif
+ return static_cast<bool>(xdata_);
}
void clear_xdata() {
xdata_ = none;