summaryrefslogtreecommitdiff
path: root/Source/Core/Common/CodeBlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Common/CodeBlock.h')
-rw-r--r--Source/Core/Common/CodeBlock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/CodeBlock.h b/Source/Core/Common/CodeBlock.h
index 8f02f08336..e399b1003a 100644
--- a/Source/Core/Common/CodeBlock.h
+++ b/Source/Core/Common/CodeBlock.h
@@ -21,7 +21,7 @@ private:
virtual void PoisonMemory() = 0;
protected:
- u8 *region;
+ u8* region;
size_t region_size;
size_t parent_region_size;
@@ -68,7 +68,7 @@ public:
}
}
- bool IsInSpace(u8 *ptr) const
+ bool IsInSpace(u8* ptr) const
{
return (ptr >= region) && (ptr < (region + region_size));
}