Features: Add cxx_nullptr.

This commit is contained in:
Stephen Kelly
2014-04-03 19:34:47 +02:00
parent 8149fc909f
commit 0fa9bbf1fa
4 changed files with 17 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
void someFunc(int*)
{
}
void otherFunc()
{
someFunc(nullptr);
}