Atmosphere/stratosphere
Tony Wasserka ad636f7216 Modernize C++ usage (#144)
* Stratosphere: Use modern C++ idioms in some places

* algorithms like std::for_each are used instead of raw loops

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Add a utility predicate function to test for equality with a reference element

This can be used to rewrite some common raw loops using algorithms instead

* fs.mitm: Use variant

* fs.mitm: Use enum class

* fs.mitm: Turn RomFSSourceInfo::Cleanup into a destructor

This obsoletes the need for a custom deleter in other places

* fs.mitm: Use enum class some more

* fs.mitm: Use unique_ptr

* fs.mitm: Simplify initialization

* Stratosphere: Simplify initialization

* fs.mitm: Use unique_ptr (fix memory leak along the way)

The previous code was using "delete" rather than "delete[]"

* fs.mitm: Use vector::emplace_back rather than push_back

emplace_back constructs elements in-place, hence avoiding a redundant element copy.

* Stratosphere: Replace more raw loops with algorithms

* Stratosphere: Use unique_ptr

* fs.mitm: Replace more raw loops with algorithms

* Stratosphere: Prefer move-construction over copy-construction when moving sink parameters around
2018-06-19 11:07:31 -07:00
..
boot Boot: Fully implemented GPIO and PINMUX handling 2018-06-02 22:32:51 +01:00
boot2 Replace std::make_tuple with simpler syntax (#77) 2018-05-05 11:41:39 -07:00
fs_mitm Modernize C++ usage (#144) 2018-06-19 11:07:31 -07:00
libstratosphere Modernize C++ usage (#144) 2018-06-19 11:07:31 -07:00
loader Modernize C++ usage (#144) 2018-06-19 11:07:31 -07:00
pm Modernize C++ usage (#144) 2018-06-19 11:07:31 -07:00
sm Modernize C++ usage (#144) 2018-06-19 11:07:31 -07:00
Makefile Revamp all the Makefiles (thanks @fincs @WinterMute) 2018-05-19 01:07:27 +02:00