File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -65,16 +65,16 @@ namespace ranges
65
65
{
66
66
struct _base {};
67
67
68
- struct interface
68
+ struct _interface
69
69
{
70
- virtual ~interface ()
70
+ virtual ~_interface ()
71
71
{}
72
- virtual interface * clone () const = 0;
72
+ virtual _interface * clone () const = 0;
73
73
virtual std::type_info const & type () const noexcept = 0;
74
74
};
75
75
76
76
template <typename T>
77
- struct impl final : interface
77
+ struct impl final : _interface
78
78
{
79
79
private:
80
80
T obj;
@@ -126,7 +126,7 @@ namespace ranges
126
126
template <typename T>
127
127
friend T const * any_cast (any const *) noexcept ;
128
128
129
- std::unique_ptr<_any_::interface > ptr_;
129
+ std::unique_ptr<_any_::_interface > ptr_;
130
130
131
131
public:
132
132
any () noexcept = default ;
You can’t perform that action at this time.
0 commit comments