mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2026-08-16 15:56:43 -05:00
Minor code cleanup
This commit is contained in:
@@ -30,7 +30,7 @@ public:
|
||||
}
|
||||
|
||||
bool operator<(const FunctionSymbolData &rhs) const {
|
||||
return (uint32_t) address < (uint32_t) rhs.address; //assume that you compare the record based on a
|
||||
return (uint32_t) address < (uint32_t) rhs.address;
|
||||
}
|
||||
|
||||
virtual ~FunctionSymbolData() = default;
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
|
||||
#include "../utils/logger.h"
|
||||
#include <malloc.h>
|
||||
#include <utility>
|
||||
|
||||
PluginData::PluginData(const PluginData &obj) {
|
||||
this->buffer = obj.buffer;
|
||||
|
||||
@@ -18,10 +18,7 @@
|
||||
#include "PluginMetaInformationFactory.h"
|
||||
#include "../fs/FSUtils.h"
|
||||
#include "../utils/StringTools.h"
|
||||
#include <dirent.h>
|
||||
#include <memory>
|
||||
#include <sys/types.h>
|
||||
#include <whb/file.h>
|
||||
|
||||
using namespace ELFIO;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user