Commit 90680f3b by Jason Merrill

* g++.dg/cpp0x/lambda/lambda-this8.C: Don't use NULL.

From-SVN: r196080
parent 110207ad
......@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment