1.1 --- a/epoc32/include/stdapis/stlport/stl/_relops_hash_cont.h Tue Nov 24 13:55:44 2009 +0000
1.2 +++ b/epoc32/include/stdapis/stlport/stl/_relops_hash_cont.h Tue Mar 16 16:12:26 2010 +0000
1.3 @@ -1,1 +1,32 @@
1.4 -_relops_hash_cont.h
1.5 +// This is an implementation file which
1.6 +// is intended to be included multiple times with different _STLP_ASSOCIATIVE_CONTAINER
1.7 +// setting
1.8 +
1.9 +_STLP_TEMPLATE_HEADER
1.10 +inline bool _STLP_CALL
1.11 +operator==(const _STLP_TEMPLATE_CONTAINER& __hm1, const _STLP_TEMPLATE_CONTAINER& __hm2)
1.12 +{
1.13 + return _STLP_TEMPLATE_CONTAINER::_M_equal(__hm1, __hm2);
1.14 +}
1.15 +
1.16 +#ifdef _STLP_USE_SEPARATE_RELOPS_NAMESPACE
1.17 +
1.18 +_STLP_TEMPLATE_HEADER
1.19 +inline bool _STLP_CALL
1.20 +operator!=(const _STLP_TEMPLATE_CONTAINER& __hm1, const _STLP_TEMPLATE_CONTAINER& __hm2) {
1.21 + return !(__hm1 == __hm2);
1.22 +}
1.23 +
1.24 +#endif /* _STLP_USE_SEPARATE_RELOPS_NAMESPACE */
1.25 +
1.26 +#ifdef _STLP_FUNCTION_TMPL_PARTIAL_ORDER
1.27 +
1.28 +_STLP_TEMPLATE_HEADER
1.29 +inline void _STLP_CALL
1.30 +swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2)
1.31 +{
1.32 + __hm1.swap(__hm2);
1.33 +}
1.34 +
1.35 +#endif /* _STLP_FUNCTION_TMPL_PARTIAL_ORDER */
1.36 +