mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
bugfix
[SVN r15324]
This commit is contained in:
@@ -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()));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user