On 27/04/15 15:44 -0700, Doug Evans wrote:
        PR libstdc++/65839
        * python/libstdcxx/v6/xmethods.py (get_bool_type): New function.
        Replace all lookups of "bool" with this.
        (get_std_size_type): New function.  Replace all lookups of std::size_t
        with this.
        (ArrayWorkerBase): Rename arg valtype to elem_type for consistency,

I'd say ArrayWorkerBase's _valtype is correct and deque and vector are
wrong to use _elemtype.

C++ containers use value_type for the type of the container objects.
Smart pointers use element_type for the type of the owned object. So
using _valtype for containers and _elemtype for unique_ptr would be
consistent with the C++ library types.

Reply via email to