* g++.dg/cpp0x/lambda/lambda-this8.C: Don't use NULL.
From-SVN: r196080
This commit is contained in:
parent
110207ad17
commit
90680f3b80
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ struct test {
|
|||
}
|
||||
|
||||
template<typename T>
|
||||
void print() { if (this == NULL) __builtin_abort (); }
|
||||
void print() { if (this == 0) __builtin_abort (); }
|
||||
};
|
||||
|
||||
int main(void) {
|
||||
|
|
Loading…
Add table
Reference in a new issue