remove override from adjacent_tokens_only
[folly.git] / folly / experimental / ProgramOptions.cpp
index e50f2655dfa999601380cae37cf2ae37b6ac3951..73c471ffd2d3d5d493251733ff735a6b35c0ac3f 100644 (file)
@@ -83,7 +83,9 @@ class GFlagValueSemanticBase : public po::value_semantic {
 
   std::string name() const override { return "arg"; }
 #if BOOST_VERSION >= 105900
-  bool adjacent_tokens_only() const override { return false; }
+  bool adjacent_tokens_only() const {
+    return false;
+  }
 #endif
   bool is_composing() const override { return false; }
   bool is_required() const override { return false; }