2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00
[SVN r15324]
This commit is contained in:
Dave Abrahams
2002-09-14 16:19:22 +00:00
parent af5176be70
commit 4a6762540d

View File

@@ -73,10 +73,10 @@ namespace detail
template <class T>
struct assert_default_constructible
{
static int check2(T const*);
static int check2(T const&);
static int check()
{
return sizeof(check2(&T()));
return sizeof(check2(T()));
}
};
}