From 5a7ed220aace25e0276a9316de499f2681222346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Me=C3=9Fmer?= Date: Sat, 17 Oct 2015 20:55:55 +0200 Subject: [PATCH] Fix -Weffc++ warning --- ParallelAccessStore.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ParallelAccessStore.h b/ParallelAccessStore.h index 9d1efdf4..5a1cb9c0 100644 --- a/ParallelAccessStore.h +++ b/ParallelAccessStore.h @@ -43,6 +43,8 @@ public: ParallelAccessStore *_parallelAccessStore; //TODO We're storing Key twice (here and in the base resource). Rather use getKey() on the base resource if possible somehow. Key _key; + + DISALLOW_COPY_AND_ASSIGN(ResourceRefBase); }; bool isOpened(const Key &key) const;