diff --git a/fpga/thirdparty/CLI11/CLI11.hpp b/fpga/thirdparty/CLI11/CLI11.hpp index c439fd0d9..09e36b0fe 100644 --- a/fpga/thirdparty/CLI11/CLI11.hpp +++ b/fpga/thirdparty/CLI11/CLI11.hpp @@ -1306,16 +1306,16 @@ public: #if __cplusplus <= 201703L /// Sets required options \deprecated - Option *requires(Option *opt) { return needs(opt); } + Option *set_requires(Option *opt) { return needs(opt); } /// Can find a string if needed \deprecated - template Option *requires(std::string opt_name) { + template Option *set_requires(std::string opt_name) { return needs(opt_name); } /// Any number supported, any mix of string and Opt \deprecated template - Option *requires(A opt, B opt1, ARG... args) { + Option *set_requires(A opt, B opt1, ARG... args) { needs(opt); return needs(opt1, args...); }