summaryrefslogtreecommitdiffstats
path: root/binaryurp/source/cache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/cache.hxx')
-rw-r--r--binaryurp/source/cache.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryurp/source/cache.hxx b/binaryurp/source/cache.hxx
index 97e246ec2655..9df738f03ba2 100644
--- a/binaryurp/source/cache.hxx
+++ b/binaryurp/source/cache.hxx
@@ -80,8 +80,8 @@ public:
}
private:
- Cache(const Cache&) SAL_DELETED_FUNCTION;
- Cache& operator=(const Cache&) SAL_DELETED_FUNCTION;
+ Cache(const Cache&) = delete;
+ Cache& operator=(const Cache&) = delete;
typedef std::list<T> LruList; // last recently used list
typedef typename LruList::iterator LruListIt;