summaryrefslogtreecommitdiffstats
path: root/Source/Checks/cm_cxx_nullptr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Checks/cm_cxx_nullptr.cxx')
-rw-r--r--Source/Checks/cm_cxx_nullptr.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/Checks/cm_cxx_nullptr.cxx b/Source/Checks/cm_cxx_nullptr.cxx
deleted file mode 100644
index 500684a..0000000
--- a/Source/Checks/cm_cxx_nullptr.cxx
+++ /dev/null
@@ -1,14 +0,0 @@
-int test(int)
-{
- return -1;
-}
-
-int test(int*)
-{
- return 0;
-}
-
-int main()
-{
- return test(nullptr);
-}