Home | History | Annotate | Download | only in stl
      1 /* This is an implementation file which is intended to be included
      2  * multiple times with different _STLP_TEMPLATE_CONTAINER settings.
      3  */
      4 
      5 #if defined (_STLP_FUNCTION_TMPL_PARTIAL_ORDER)
      6 
      7 _STLP_TEMPLATE_HEADER
      8 inline void _STLP_CALL
      9 swap(_STLP_TEMPLATE_CONTAINER& __hm1, _STLP_TEMPLATE_CONTAINER& __hm2) {
     10   __hm1.swap(__hm2);
     11 }
     12 
     13 #endif /* _STLP_FUNCTION_TMPL_PARTIAL_ORDER */
     14