Summary: Needed for boost 1.59.0 which added this as a pure virtual function
in the value_semantic base class. Fixes #314.
Closes #315
Reviewed By: @yfeldblum
Differential Revision:
D2419035
Pulled By: @JoelMarcey
#include <unordered_map>
#include <unordered_set>
+#include <boost/version.hpp>
#include <gflags/gflags.h>
#include <glog/logging.h>
#include <folly/Conv.h>
: info_(std::move(info)) { }
std::string name() const override { return "arg"; }
+#if BOOST_VERSION >= 105900
+ bool adjacent_tokens_only() const override { return false; }
+#endif
bool is_composing() const override { return false; }
bool is_required() const override { return false; }
// We handle setting the GFlags from parse(), so notify() does nothing.