forked from boostorg/utility
Fixed Intel 7 issue (reported by Daniel Frey)
[SVN r19145]
This commit is contained in:
@@ -23,9 +23,8 @@ namespace
|
||||
|
||||
int main()
|
||||
{
|
||||
Incomplete * p;
|
||||
Incomplete * p = 0;
|
||||
boost::checked_delete(p); // should cause compile time error
|
||||
Incomplete ** pa;
|
||||
boost::checked_array_delete(pa); // should cause compile time error
|
||||
boost::checked_array_delete(p); // should cause compile time error
|
||||
return 0;
|
||||
} // main
|
||||
|
Reference in New Issue
Block a user