summaryrefslogtreecommitdiff
path: root/src/options
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2018-03-05 15:36:50 -0800
committerGitHub <noreply@github.com>2018-03-05 15:36:50 -0800
commit3d31caa30e094d337a4919b3d1e6ba9259e461b8 (patch)
treee99bc99c2ce450f7d0c4fa8c0938b24e886af996 /src/options
parenta2e78ec8dd5e935b6ef166154be7ee35bffc6d32 (diff)
Enable -Wsuggest-override by default. (#1643)
Adds missing override keywords.
Diffstat (limited to 'src/options')
-rw-r--r--src/options/argument_extender_implementation.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/options/argument_extender_implementation.h b/src/options/argument_extender_implementation.h
index 859a88b3e..efcd55cae 100644
--- a/src/options/argument_extender_implementation.h
+++ b/src/options/argument_extender_implementation.h
@@ -50,39 +50,39 @@ class ArgumentExtenderImplementation : public ArgumentExtender {
* Preconditions:
* - argc and argv are non-null.
*/
- void getArguments(int* argc, char*** argv) const;
+ void getArguments(int* argc, char*** argv) const override;
/** Returns the number of arguments that are . */
- size_t numArguments() const;
+ size_t numArguments() const override;
/**
* Inserts a copy of element into the front of the arguments list.
* Preconditions: element is non-null and 0 terminated.
*/
- void pushFrontArgument(const char* element);
+ void pushFrontArgument(const char* element) override;
/**
* Inserts a copy of element into the back of the arguments list.
* Preconditions: element is non-null and 0 terminated.
*/
- void pushBackArgument(const char* element);
+ void pushBackArgument(const char* element) override;
/** Removes the front of the arguments list.*/
- void popFrontArgument();
+ void popFrontArgument() override;
/** Adds a new preemption to the arguments list. */
- void pushBackPreemption(const char* element);
+ void pushBackPreemption(const char* element) override;
/**
* Moves all of the preemptions into the front of the arguments
* list.
*/
- void movePreemptionsToArguments();
+ void movePreemptionsToArguments() override;
/** Returns true iff there is a pending preemption.*/
- bool hasPreemptions() const;
+ bool hasPreemptions() const override;
-private:
+ private:
typedef std::list< char* > CharPointerList;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback