$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [TypeIndex] Peer review period for library acceptance begins, ending Thurs 21st Nov
From: Antony Polukhin (antoshkka_at_[hidden])
Date: 2013-11-15 10:51:35
2013/11/14 Andrey Semashev <andrey.semashev_at_[hidden]>
<...>
> class type_index
> {
> boost::type_info const* m_type_info;
>
> public:
> explicit type_index(boost::type_info const&);
> boost::type_info const& get() const;
> // as previously discussed:
> const char* name() const;
> const char* raw_name() const;
> std::string pretty_name() const;
> };
>
Don't really like the "get()" name. Following name is more clear:
public:
boost::type_info const& type_info() const noexcept;
Ok?
-- Best regards, Antony Polukhin