Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aa031f commit 8767bb8Copy full SHA for 8767bb8
‎book/en-us/02-usability.md
@@ -61,7 +61,7 @@ int main() {
61
std::cout << "NULL == nullptr" << std::endl;
62
63
foo(0); // will call foo(int)
64
- // foo(NULL); // doen't compile
+ // foo(NULL); // doesn't compile
65
foo(nullptr); // will call foo(char*)
66
return 0;
67
}
‎code/2/2.01.nullptr.cpp
@@ -22,7 +22,7 @@ int main() {
22
23
24
25
26
27
28
0 commit comments