Organize imports and format code

This commit is contained in:
Maschell
2020-05-28 20:51:31 +02:00
parent 80a0712519
commit 7a7a1f7a63
12 changed files with 23 additions and 35 deletions

View File

@@ -1,13 +1,13 @@
#include "PluginInformation.h"
PluginInformation::PluginInformation(const PluginInformation& other) {
for (size_t i=0; i<other.hook_data_list.size(); i++){
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 (size_t i=0; i<other.function_data_list.size(); i++){
for (size_t i = 0; i < other.function_data_list.size(); i++) {
function_data_list.push_back(other.function_data_list[i]);
}
for (size_t i=0; i<other.relocation_data_list.size(); i++){
for (size_t i = 0; i < other.relocation_data_list.size(); i++) {
relocation_data_list.push_back(other.relocation_data_list[i]);
}
section_info_list = other.section_info_list;