mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-11 12:16:06 -05:00
Clean up and formatting
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
#include "PluginInformation.h"
|
||||
|
||||
PluginInformation::PluginInformation(const PluginInformation &other) {
|
||||
for (size_t i = 0; i < other.hook_data_list.size(); i++) {
|
||||
hook_data_list.push_back(other.hook_data_list[i]);
|
||||
for (const auto &i : other.hook_data_list) {
|
||||
hook_data_list.push_back(i);
|
||||
}
|
||||
for (size_t i = 0; i < other.function_data_list.size(); i++) {
|
||||
function_data_list.push_back(other.function_data_list[i]);
|
||||
for (const auto &i : other.function_data_list) {
|
||||
function_data_list.push_back(i);
|
||||
}
|
||||
for (size_t i = 0; i < other.relocation_data_list.size(); i++) {
|
||||
relocation_data_list.push_back(other.relocation_data_list[i]);
|
||||
for (const auto &i : other.relocation_data_list) {
|
||||
relocation_data_list.push_back(i);
|
||||
}
|
||||
section_info_list = other.section_info_list;
|
||||
trampolinId = other.trampolinId;
|
||||
|
||||
Reference in New Issue
Block a user