diff options
Diffstat (limited to 'src/post.h')
-rw-r--r-- | src/post.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -205,7 +205,11 @@ public: mutable optional<xdata_t> xdata_; bool has_xdata() const { +#if BOOST_VERSION >= 105600 + return xdata_ != NULL; +#else return xdata_; +#endif } void clear_xdata() { xdata_ = none; |