From a02686b8c3f25e3ac0c60f5e506a674e720e420e Mon Sep 17 00:00:00 2001 From: Prathamesh Patil Date: Mon, 23 Jan 2023 15:37:34 +0530 Subject: [PATCH 1/3] modified some data --- c++2.0/c++11/nullptr.cpp | 2 +- effective_c++/2.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/c++2.0/c++11/nullptr.cpp b/c++2.0/c++11/nullptr.cpp index 8fa9a7f..a4a7822 100644 --- a/c++2.0/c++11/nullptr.cpp +++ b/c++2.0/c++11/nullptr.cpp @@ -22,7 +22,7 @@ int main() { // c语言中将NULL定义为空指针,而在c++中直接定义为0,这是因为C++是强类型的,void *是不能隐式转换成其他指针类型的。 - if(NULL==0) cout<<"NULL==0"< Date: Mon, 23 Jan 2023 15:40:21 +0530 Subject: [PATCH 2/3] modified header file --- c++2.0/c++11/nullptr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++2.0/c++11/nullptr.cpp b/c++2.0/c++11/nullptr.cpp index a4a7822..5e36c24 100644 --- a/c++2.0/c++11/nullptr.cpp +++ b/c++2.0/c++11/nullptr.cpp @@ -2,7 +2,7 @@ // Created by light on 19-11-2. // -#include +#include using namespace std; void f(int i) { From 43f47a8ddc478db59008c855ff5db0ba47d0d4bc Mon Sep 17 00:00:00 2001 From: Prathamesh Patil Date: Mon, 23 Jan 2023 15:51:30 +0530 Subject: [PATCH 3/3] modified another file --- c++2.0/c++11/auto.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c++2.0/c++11/auto.cpp b/c++2.0/c++11/auto.cpp index bfad975..7c8742a 100644 --- a/c++2.0/c++11/auto.cpp +++ b/c++2.0/c++11/auto.cpp @@ -2,7 +2,7 @@ // Created by light on 19-11-2. // -#include +#include #include #include #include