Skip to content

Commit 3ba9cd0

Browse files
authored
Update CppCoreGuidelines.md
1 parent 4cb5a58 commit 3ba9cd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CppCoreGuidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1429,7 +1429,7 @@ Also, precisely typed code is often optimized better.
14291429

14301430
Consider:
14311431

1432-
void pass(void* data); // weak and underqualified type void* is suspicious
1432+
void pass(void* data); // weak and under-qualified type void* is suspicious
14331433

14341434
Callers are unsure what types are allowed and if the data may
14351435
be mutated as `const` is not specified. Note all pointer types
@@ -21038,7 +21038,7 @@ A textbook for beginners and relative novices.
2103821038

2103921039
* Bjarne Stroustrup: [C++11 Style](http://channel9.msdn.com/Events/GoingNative/GoingNative-2012/Keynote-Bjarne-Stroustrup-Cpp11-Style). 2012.
2104021040
* Bjarne Stroustrup: [The Essence of C++: With Examples in C++84, C++98, C++11, and C++14](http://channel9.msdn.com/Events/GoingNative/2013/Opening-Keynote-Bjarne-Stroustrup). 2013
21041-
* All the talks from [CppCon 14](https://isocpp.org/blog/2014/11/cppcon-videos-c9)
21041+
* All the talks from [CppCon ’14](https://isocpp.org/blog/2014/11/cppcon-videos-c9)
2104221042
* Bjarne Stroustrup: [The essence of C++](https://www.youtube.com/watch?v=86xWVb4XIyE) at the University of Edinburgh. 2014.
2104321043
* Bjarne Stroustrup: [The Evolution of C++ Past, Present and Future](https://www.youtube.com/watch?v=_wzc7a3McOs). CppCon 2016 keynote.
2104421044
* Bjarne Stroustrup: [Make Simple Tasks Simple!](https://www.youtube.com/watch?v=nesCaocNjtQ). CppCon 2014 keynote.

0 commit comments

Comments
 (0)