all: minor cleanups
This commit is contained in:
+4
-4
@@ -31,7 +31,7 @@
|
||||
// ElfLinker
|
||||
**************************************************************************/
|
||||
|
||||
class ElfLinker : private noncopyable {
|
||||
class ElfLinker : private upx::noncopyable {
|
||||
friend class Packer;
|
||||
|
||||
public:
|
||||
@@ -114,7 +114,7 @@ protected:
|
||||
const char *type);
|
||||
};
|
||||
|
||||
struct ElfLinker::Section : private noncopyable {
|
||||
struct ElfLinker::Section : private upx::noncopyable {
|
||||
char *name = nullptr;
|
||||
void *input = nullptr;
|
||||
byte *output = nullptr;
|
||||
@@ -128,7 +128,7 @@ struct ElfLinker::Section : private noncopyable {
|
||||
~Section() noexcept;
|
||||
};
|
||||
|
||||
struct ElfLinker::Symbol : private noncopyable {
|
||||
struct ElfLinker::Symbol : private upx::noncopyable {
|
||||
char *name = nullptr;
|
||||
Section *section = nullptr;
|
||||
upx_uint64_t offset = 0;
|
||||
@@ -137,7 +137,7 @@ struct ElfLinker::Symbol : private noncopyable {
|
||||
~Symbol() noexcept;
|
||||
};
|
||||
|
||||
struct ElfLinker::Relocation : private noncopyable {
|
||||
struct ElfLinker::Relocation : private upx::noncopyable {
|
||||
const Section *section = nullptr;
|
||||
unsigned offset = 0;
|
||||
const char *type = nullptr;
|
||||
|
||||
Reference in New Issue
Block a user