Skip to content

Commit 95af66d

Browse files
1 parent b448f2a commit 95af66d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

include/CLI/Option.hpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -368,10 +368,6 @@ class Option : public OptionBase<Option> {
368368
/// flag indicating that the option should force the callback regardless if any results present
369369
bool force_callback_{false};
370370

371-
/// callback priority indicator
372-
CallbackPriority callback_priority_{CallbackPriority::Normal};
373-
///@}
374-
375371
/// Making an option by hand is not defined, it must be made by the App class
376372
Option(std::string option_name,
377373
std::string option_description,
@@ -453,8 +449,6 @@ class Option : public OptionBase<Option> {
453449
callback_priority_ = value;
454450
return this;
455451
}
456-
/// Get the current value of run_callback_for_default
457-
CLI11_NODISCARD CallbackPriority get_callback_priority() const { return callback_priority_; }
458452

459453
/// Adds a shared validator
460454
Option *check(Validator_p validator);

0 commit comments

Comments
 (0)