You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
neptools/msvc_include/xstddef

18 lines
260 B
C++

// -*- c++ -*-
#pragma once
#define less __less_base
#include_next <xstddef>
#undef less
namespace std
{
template <typename T = void> struct less : __less_base<T> {};
template<> struct less<void> : __less_base<void>
{
using is_transparent = void;
};
}