aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/masm/stubs/wtf/Vector.h1
-rw-r--r--src/3rdparty/masm/wtf/CheckedArithmetic.h3
-rw-r--r--src/3rdparty/masm/wtf/PageBlock.h8
3 files changed, 3 insertions, 9 deletions
diff --git a/src/3rdparty/masm/stubs/wtf/Vector.h b/src/3rdparty/masm/stubs/wtf/Vector.h
index 2fead9f6ba..cee647a4b5 100644
--- a/src/3rdparty/masm/stubs/wtf/Vector.h
+++ b/src/3rdparty/masm/stubs/wtf/Vector.h
@@ -55,7 +55,6 @@ class Vector : public std::vector<T> {
public:
Vector() {}
Vector(int initialSize) : std::vector<T>(initialSize) {}
- Vector(const Vector &other) : std::vector<T>(other) {}
Vector(std::initializer_list<T> list) : std::vector<T>(list) {}
inline void append(const T& value)
diff --git a/src/3rdparty/masm/wtf/CheckedArithmetic.h b/src/3rdparty/masm/wtf/CheckedArithmetic.h
index dd4acbb9b5..7d36ca5c28 100644
--- a/src/3rdparty/masm/wtf/CheckedArithmetic.h
+++ b/src/3rdparty/masm/wtf/CheckedArithmetic.h
@@ -430,6 +430,9 @@ public:
{
}
+ Checked(const Checked &) = default;
+
+
Checked(ResultOverflowedTag)
: m_value(0)
{
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))