-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Adventures in modern C++ by lanl2tz | ||
In this repository I aim to jot down fragmental stuff that I | ||
picked up from modern features of C++ (mainly from C++11 and | ||
its supplementary patches C++14 and C++17).\ | ||
its supplementary patches C++14 and C++17).\\ | ||
I picked up these pieces of modern C++ bits for just two reasons: | ||
- They make writing certain features really easy or efficient. | ||
- Artistry can be derived from the structures implemented using them.\\ | ||
We are primarily concerned with C++ 17 as it is well implemented across | ||
different compilers (Clang, GCC, etc).\ | ||
different compilers (Clang, GCC, etc).\\ | ||
The Clang g++ compiler is used with ```-std=c++17```. |