Remove Globals.h

This commit is contained in:
Henrik Rydgård
2017-08-31 17:13:18 +02:00
parent ff3d799871
commit 6a1fa728d8
67 changed files with 99 additions and 193 deletions
+4 -1
View File
@@ -38,8 +38,11 @@ protected:
size_t region_size;
};
template<class T> class CodeBlock : public CodeBlockCommon, public T, NonCopyable {
template<class T> class CodeBlock : public CodeBlockCommon, public T {
private:
CodeBlock(const CodeBlock &) = delete;
void operator=(const CodeBlock &) = delete;
// A privately used function to set the executable RAM space to something invalid.
// For debugging usefulness it should be used to set the RAM to a host specific breakpoint instruction
virtual void PoisonMemory(int offset) = 0;