Sha256: bb174d59cd2a59e088051c0abf7f6bbd95d4de0b80f183ff3d4e95dbd8f577ac

Contents?: true

Size: 344 Bytes

Versions: 6

Compression:

Stored size: 344 Bytes

Contents

#ifndef Rice__detail__remove_const__hpp_
#define Rice__detail__remove_const__hpp_

namespace Rice
{

namespace detail
{

template<typename T>
struct remove_const { typedef T Type; };

template<typename T>
struct remove_const<T const> { typedef T Type; };

} // namespace detail

} // namespace Rice

#endif // Rice__detail__remove_const__hpp_

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
jameskilton-rice-1.2.0 rice/detail/remove_const.hpp
rice-1.2.0 rice/detail/remove_const.hpp
rice-1.0.1 rice/detail/remove_const.hpp
rice-1.0.0 rice/detail/remove_const.hpp
rice-1.0.2 rice/detail/remove_const.hpp
rice-1.1.0 rice/detail/remove_const.hpp