summaryrefslogtreecommitdiffstats
path: root/src/OSSupport
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-02-23 21:52:54 +0100
committerMattes D <github@xoft.cz>2014-02-23 21:52:54 +0100
commit93f881fab4a825600882348bda00642c059c44d1 (patch)
tree5e43c6b4968558d7e9e1d9b8ddfc21033c0c657d /src/OSSupport
parentUpdated CONTRIBUTING file with formatting and essential rules. (diff)
parentUndid changing core (diff)
downloadcuberite-93f881fab4a825600882348bda00642c059c44d1.tar
cuberite-93f881fab4a825600882348bda00642c059c44d1.tar.gz
cuberite-93f881fab4a825600882348bda00642c059c44d1.tar.bz2
cuberite-93f881fab4a825600882348bda00642c059c44d1.tar.lz
cuberite-93f881fab4a825600882348bda00642c059c44d1.tar.xz
cuberite-93f881fab4a825600882348bda00642c059c44d1.tar.zst
cuberite-93f881fab4a825600882348bda00642c059c44d1.zip
Diffstat (limited to 'src/OSSupport')
-rw-r--r--src/OSSupport/Queue.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/OSSupport/Queue.h b/src/OSSupport/Queue.h
index 6c3d58295..beb6a63f1 100644
--- a/src/OSSupport/Queue.h
+++ b/src/OSSupport/Queue.h
@@ -29,7 +29,11 @@ public:
static void Delete(T) {};
/// Called when an Item is inserted with EnqueueItemIfNotPresent and there is another equal value already inserted
- static void Combine(T & a_existing, const T & a_new) {};
+ static void Combine(T & a_existing, const T & a_new)
+ {
+ UNUSED(a_existing);
+ UNUSED(a_new);
+ };
};