#ifndef GCCXML_SET
#define GCCXML_SET

#include_next <set>

// 23.3/1
namespace std
{
  using ::set;
  using ::operator==;
  using ::operator!=;
  using ::operator<;
  using ::operator>;
  using ::operator<=;
  using ::operator>=;
  using ::swap;
  using ::multiset;
}

#endif
