Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions include/range/v3/utility/any.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,16 @@ namespace ranges
{
struct _base {};

struct interface
struct _interface
{
virtual ~interface()
virtual ~_interface()
{}
virtual interface * clone() const = 0;
virtual _interface * clone() const = 0;
virtual std::type_info const & type() const noexcept = 0;
};

template<typename T>
struct impl final : interface
struct impl final : _interface
{
private:
T obj;
Expand Down Expand Up @@ -126,7 +126,7 @@ namespace ranges
template<typename T>
friend T const * any_cast(any const *) noexcept;

std::unique_ptr<_any_::interface> ptr_;
std::unique_ptr<_any_::_interface> ptr_;

public:
any() noexcept = default;
Expand Down
Loading