aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/config.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/config.hh')
-rw-r--r--src/libutil/config.hh6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libutil/config.hh b/src/libutil/config.hh
index 99850c1cd..9a32af528 100644
--- a/src/libutil/config.hh
+++ b/src/libutil/config.hh
@@ -142,6 +142,12 @@ public:
void set(const std::string & str) override;
+ virtual void override(const T & v)
+ {
+ overriden = true;
+ value = v;
+ }
+
std::string to_string() override;
void convertToArg(Args & args, const std::string & category) override;