~ubuntu-branches/ubuntu/trusty/emscripten/trusty-proposed

« back to all changes in this revision

Viewing changes to system/include/libcxx/typeindex

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2014-01-19 14:12:40 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20140119141240-jg1l42cc158j59tn
Tags: 1.9.0~20140119~7dc8c2f-1
* New snapshot release (Closes: #733714)
* Provide sources for javascript and flash. Done in orig-tar.sh
  Available in third_party/websockify/include/web-socket-js/src/
  (Closes: #735903)

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
 
56
56
_LIBCPP_BEGIN_NAMESPACE_STD
57
57
 
58
 
class _LIBCPP_TYPE_VIS type_index
 
58
class _LIBCPP_TYPE_VIS_ONLY type_index
59
59
{
60
60
    const type_info* __t_;
61
61
public:
87
87
    const char* name() const _NOEXCEPT {return __t_->name();}
88
88
};
89
89
 
90
 
template <class _Tp> struct _LIBCPP_TYPE_VIS hash;
 
90
template <class _Tp> struct _LIBCPP_TYPE_VIS_ONLY hash;
91
91
 
92
92
template <>
93
 
struct _LIBCPP_TYPE_VIS hash<type_index>
 
93
struct _LIBCPP_TYPE_VIS_ONLY hash<type_index>
94
94
    : public unary_function<type_index, size_t>
95
95
{
96
96
    _LIBCPP_INLINE_VISIBILITY