aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/wtf/PageBlock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/masm/wtf/PageBlock.h')
-rw-r--r--src/3rdparty/masm/wtf/PageBlock.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/3rdparty/masm/wtf/PageBlock.h b/src/3rdparty/masm/wtf/PageBlock.h
index 4d408e1c91..09e4048239 100644
--- a/src/3rdparty/masm/wtf/PageBlock.h
+++ b/src/3rdparty/masm/wtf/PageBlock.h
@@ -37,7 +37,6 @@ inline bool isPowerOfTwo(size_t size) { return !(size & (size - 1)); }
class PageBlock {
public:
PageBlock();
- PageBlock(const PageBlock&);
PageBlock(void*, size_t, bool hasGuardPages);
void* realBase() const { return m_realBase; }
@@ -69,13 +68,6 @@ inline PageBlock::PageBlock()
{
}
-inline PageBlock::PageBlock(const PageBlock& other)
- : m_realBase(other.m_realBase)
- , m_base(other.m_base)
- , m_size(other.m_size)
-{
-}
-
inline PageBlock::PageBlock(void* base, size_t size, bool hasGuardPages)
: m_realBase(base)
, m_base(static_cast<char*>(base) + ((base && hasGuardPages) ? pageSize() : 0))