diff options
Diffstat (limited to 'options/connector.hpp')
-rw-r--r-- | options/connector.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/options/connector.hpp b/options/connector.hpp index 5091ae67..68e86096 100644 --- a/options/connector.hpp +++ b/options/connector.hpp @@ -22,15 +22,15 @@ namespace options { -class base_value; +class value_; namespace detail { class OTR_OPTIONS_EXPORT connector { - friend class ::options::base_value; + friend class ::options::value_; - using value_type = base_value*; + using value_type = value_*; using value_vec = std::vector<value_type>; using comparator = bool(*)(const QVariant&, const QVariant&); using tt = std::tuple<value_vec, comparator, std::type_index>; |