changed no_type to a struct

[SVN r16161]
This commit is contained in:
John Maddock
2002-11-08 12:41:24 +00:00
parent 021ee1971a
commit 9586ee5966

View File

@ -16,7 +16,10 @@ namespace boost {
namespace type_traits {
typedef char yes_type;
typedef double no_type;
struct no_type
{
char padding[8];
};
} // namespace type_traits
} // namespace boost