aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authors1n <[email protected]>2019-08-17 11:01:29 -0700
committerGitHub <[email protected]>2019-08-17 11:01:29 -0700
commit8cd549c8e60b9d0a30da6634d10ee121813306db (patch)
tree4c8beac9ead3c28fd46dac74870c0371f8c41d8a /src
parentadd namespace std commenting and examples (diff)
downloadcpp-terminology-8cd549c8e60b9d0a30da6634d10ee121813306db.tar.xz
cpp-terminology-8cd549c8e60b9d0a30da6634d10ee121813306db.zip
add extra info ab standard C++ library/ namespace
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 32ef22f..2e11bca 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,5 +1,6 @@
#include <iostream>
using namespace std; // Specifies that you don't need to use "std::" before a object.
+// More info about the standard or "std" C++ library here; http://www.cplusplus.com/forum/beginner/61121/
void noReturn() // "void" means you DON'T want anything returned from the function.
{