aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/arm/arm_interface.h3
-rw-r--r--src/core/arm/interpreter/arm_interpreter.h1
-rw-r--r--src/core/hle/service/gsp.h3
-rw-r--r--src/core/hle/service/hid.h3
-rw-r--r--src/core/hle/service/srv.h3
5 files changed, 1 insertions, 12 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h
index eee4726d..4dfe0570 100644
--- a/src/core/arm/arm_interface.h
+++ b/src/core/arm/arm_interface.h
@@ -8,7 +8,7 @@
#include "common/common_types.h"
/// Generic ARM11 CPU interface
-class ARM_Interface {
+class ARM_Interface : NonCopyable {
public:
ARM_Interface() {
m_num_instructions = 0;
@@ -75,5 +75,4 @@ private:
u64 m_num_instructions; ///< Number of instructions executed
- DISALLOW_COPY_AND_ASSIGN(ARM_Interface);
};
diff --git a/src/core/arm/interpreter/arm_interpreter.h b/src/core/arm/interpreter/arm_interpreter.h
index f3c86f8d..625c0c65 100644
--- a/src/core/arm/interpreter/arm_interpreter.h
+++ b/src/core/arm/interpreter/arm_interpreter.h
@@ -63,5 +63,4 @@ private:
ARMul_State* m_state;
- DISALLOW_COPY_AND_ASSIGN(ARM_Interpreter);
};
diff --git a/src/core/hle/service/gsp.h b/src/core/hle/service/gsp.h
index 3b184608..5ba09ab7 100644
--- a/src/core/hle/service/gsp.h
+++ b/src/core/hle/service/gsp.h
@@ -27,9 +27,6 @@ public:
return "gsp::Gpu";
}
-private:
-
- DISALLOW_COPY_AND_ASSIGN(Interface);
};
} // namespace
diff --git a/src/core/hle/service/hid.h b/src/core/hle/service/hid.h
index 746c1b1f..b17fcfa8 100644
--- a/src/core/hle/service/hid.h
+++ b/src/core/hle/service/hid.h
@@ -29,9 +29,6 @@ public:
return "hid:USER";
}
-private:
-
- DISALLOW_COPY_AND_ASSIGN(Interface);
};
} // namespace
diff --git a/src/core/hle/service/srv.h b/src/core/hle/service/srv.h
index d9ac8fc8..760c976b 100644
--- a/src/core/hle/service/srv.h
+++ b/src/core/hle/service/srv.h
@@ -32,9 +32,6 @@ public:
*/
Syscall::Result Sync();
-private:
-
- DISALLOW_COPY_AND_ASSIGN(Interface);
};
} // namespace