summaryrefslogtreecommitdiff
path: root/Source/Core/Common/CodeBlock.h
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
commit3e283ea9f17aa779832db065b2ecc4b19cf03e83 (patch)
treea7e5db6d6550487db024bc9b7b5dd9fa96198aa4 /Source/Core/Common/CodeBlock.h
parent78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba (diff)
More asterisks
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));
}