summaryrefslogtreecommitdiffstats
path: root/core/config/ivalue.hh
diff options
context:
space:
mode:
Diffstat (limited to 'core/config/ivalue.hh')
-rw-r--r--core/config/ivalue.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/config/ivalue.hh b/core/config/ivalue.hh
index cf893a5..97d87dc 100644
--- a/core/config/ivalue.hh
+++ b/core/config/ivalue.hh
@@ -7,8 +7,8 @@ namespace config
class IValue {
public:
virtual ~IValue(void) = default;
- virtual void set(const char* value) = 0;
- virtual const char* get(void) const = 0;
+ virtual void set(std::string_view value) = 0;
+ virtual std::string_view get(void) const = 0;
};
} // namespace config