mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-11 20:25:49 -05:00
Formatting and cleanup
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#include "PluginInformation.h"
|
||||
|
||||
PluginInformation::PluginInformation(const PluginInformation &other) {
|
||||
for (const auto &i : other.hook_data_list) {
|
||||
for (const auto &i: other.hook_data_list) {
|
||||
hook_data_list.push_back(i);
|
||||
}
|
||||
for (const auto &i : other.function_data_list) {
|
||||
for (const auto &i: other.function_data_list) {
|
||||
function_data_list.push_back(i);
|
||||
}
|
||||
for (const auto &i : other.relocation_data_list) {
|
||||
for (const auto &i: other.relocation_data_list) {
|
||||
relocation_data_list.push_back(i);
|
||||
}
|
||||
section_info_list = other.section_info_list;
|
||||
|
||||
Reference in New Issue
Block a user