Remove trailing whitespace

This commit is contained in:
Joseph T Lyons
2021-01-16 18:10:50 -05:00
parent 1be918f768
commit f58462f198
11 changed files with 20 additions and 28 deletions

View File

@@ -11,5 +11,3 @@
10. [Enable Scripting](10-Enable_Scripting.md) 10. [Enable Scripting](10-Enable_Scripting.md)
11. [Further Reading](11-Further_Reading.md) 11. [Further Reading](11-Further_Reading.md)
12. [Final Thoughts](12-Final_Thoughts.md) 12. [Final Thoughts](12-Final_Thoughts.md)

View File

@@ -454,4 +454,3 @@ The Rule of Zero states that you do not provide any of the functions that the co
The goal is to let the compiler provide optimal versions that are automatically maintained when more member variables are added. The goal is to let the compiler provide optimal versions that are automatically maintained when more member variables are added.
[This article](http://www.nirfriedman.com/2015/06/27/cpp-rule-of-zero/) provides a background and explains techniques for implementing nearly 100% of the time. [This article](http://www.nirfriedman.com/2015/06/27/cpp-rule-of-zero/) provides a background and explains techniques for implementing nearly 100% of the time.

View File

@@ -353,4 +353,3 @@ Properly use the already highly optimized components of the vendor provided stan
#### `in_place_t` And Related #### `in_place_t` And Related
Be aware of how to use `in_place_t` and related tags for efficient creation of objects such as `std::tuple`, `std::any` and `std::variant`. Be aware of how to use `in_place_t` and related tags for efficient creation of objects such as `std::tuple`, `std::any` and `std::variant`.

View File

@@ -26,5 +26,3 @@ Consider using a typesafe library like
Note that stronger typing can also allow for more compiler optimizations. Note that stronger typing can also allow for more compiler optimizations.
* [Sorting in C vs C++](Sorting in C vs C++.pdf) * [Sorting in C vs C++](Sorting in C vs C++.pdf)

View File

@@ -1,4 +1,3 @@
# Final Thoughts # Final Thoughts
Expand your horizons and use other programming languages. Other languages have different constructs and expressions. Learning what else is out there will encourage you to be more creative with your C++ and write cleaner, more expressive code. Expand your horizons and use other programming languages. Other languages have different constructs and expressions. Learning what else is out there will encourage you to be more creative with your C++ and write cleaner, more expressive code.

View File

@@ -12,4 +12,3 @@
* [Enable Scripting](10-Enable_Scripting.md) * [Enable Scripting](10-Enable_Scripting.md)
* [Further Reading](11-Further_Reading.md) * [Further Reading](11-Further_Reading.md)
* [Final Thoughts](12-Final_Thoughts.md) * [Final Thoughts](12-Final_Thoughts.md)