|
Replace std::make_tuple with simpler syntax (#77)
* boot2: Simplify g_additional_launch_programs
It appears that Stratosphère is targeting C++17. In C++17,
std::make_tuple is not required for initialisating a tuple anymore.
Same thing, but less typing
* Replace std::make_tuple with {}
More readable and less noise. Also fixes two missing return statements.
|
|---|
|
|
| stratosphere/boot/source/boot_main.cpp |
|---|
| stratosphere/boot2/source/boot2_main.cpp |
|---|
| stratosphere/libstratosphere/include/stratosphere/ipc_templating.hpp |
|---|
| stratosphere/libstratosphere/include/stratosphere/servicesession.hpp |
|---|
| stratosphere/loader/source/ldr_debug_monitor.cpp |
|---|
| stratosphere/loader/source/ldr_process_manager.cpp |
|---|
| stratosphere/loader/source/ldr_ro_service.cpp |
|---|
| stratosphere/loader/source/ldr_shell.cpp |
|---|
| stratosphere/pm/source/pm_boot_mode.cpp |
|---|
| stratosphere/sm/source/sm_manager_service.cpp |
|---|
| stratosphere/sm/source/sm_user_service.cpp |
|---|