summaryrefslogtreecommitdiffhomepage
path: root/options/value.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'options/value.hpp')
-rw-r--r--options/value.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/options/value.hpp b/options/value.hpp
index 42e72e50..f1e44677 100644
--- a/options/value.hpp
+++ b/options/value.hpp
@@ -32,7 +32,7 @@
namespace options {
template<typename t>
-class value final : public base_value
+class value final : public value_
{
using traits = detail::value_traits<t, t, void>;
using stored_type = typename traits::stored_type;
@@ -76,7 +76,7 @@ public:
cc_noinline
value(bundle b, const QString& name, t def) :
- base_value(b, name, &is_equal, std::type_index(typeid(stored_type))),
+ value_(b, name, &is_equal, std::type_index(typeid(stored_type))),
def(def)
{
if (!self_name.isEmpty())