* g++.dg/cpp0x/lambda/lambda-this8.C: Don't use NULL.
From-SVN: r196080
This commit is contained in:
parent
110207ad17
commit
90680f3b80
@ -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…
Reference in New Issue
Block a user