summaryrefslogtreecommitdiff
path: root/store/source/storbase.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'store/source/storbase.hxx')
-rw-r--r--store/source/storbase.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/store/source/storbase.hxx b/store/source/storbase.hxx
index 3b677b405f22..fbead214e185 100644
--- a/store/source/storbase.hxx
+++ b/store/source/storbase.hxx
@@ -179,17 +179,6 @@ struct OStorePageKey
m_nHigh (store::htonl(nHigh))
{}
- OStorePageKey (const OStorePageKey & rhs)
- : m_nLow (rhs.m_nLow), m_nHigh (rhs.m_nHigh)
- {}
-
- OStorePageKey & operator= (const OStorePageKey & rhs)
- {
- m_nLow = rhs.m_nLow;
- m_nHigh = rhs.m_nHigh;
- return *this;
- }
-
/** Comparison.
*/
bool operator== (const OStorePageKey & rhs) const
@@ -224,16 +213,6 @@ struct OStorePageLink
std::swap(m_nAddr, rhs.m_nAddr);
}
- OStorePageLink (const OStorePageLink & rhs)
- : m_nAddr (rhs.m_nAddr)
- {}
-
- OStorePageLink & operator= (const OStorePageLink & rhs)
- {
- m_nAddr = rhs.m_nAddr;
- return *this;
- }
-
OStorePageLink & operator= (sal_uInt32 nAddr)
{
m_nAddr = store::htonl(nAddr);