We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa137c2 + 07f49f0 commit ca1388fCopy full SHA for ca1388f
include/range/v3/utility/any.hpp
@@ -65,16 +65,16 @@ namespace ranges
65
{
66
struct _base {};
67
68
- struct interface
+ struct _interface
69
70
- virtual ~interface()
+ virtual ~_interface()
71
{}
72
- virtual interface * clone() const = 0;
+ virtual _interface * clone() const = 0;
73
virtual std::type_info const & type() const noexcept = 0;
74
};
75
76
template<typename T>
77
- struct impl final : interface
+ struct impl final : _interface
78
79
private:
80
T obj;
@@ -126,7 +126,7 @@ namespace ranges
126
127
friend T const * any_cast(any const *) noexcept;
128
129
- std::unique_ptr<_any_::interface> ptr_;
+ std::unique_ptr<_any_::_interface> ptr_;
130
131
public:
132
any() noexcept = default;
0 commit comments