diff options
author | Tycho <work.tycho+git@gmail.com> | 2014-02-23 21:23:35 +0100 |
---|---|---|
committer | Tycho <work.tycho+git@gmail.com> | 2014-02-23 21:23:35 +0100 |
commit | 462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1 (patch) | |
tree | 319614feeb429ae401d120f458e2555b426cadd4 /src/OSSupport/Queue.h | |
parent | Updated CONTRIBUTING file with formatting and essential rules. (diff) | |
download | cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.gz cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.bz2 cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.lz cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.xz cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.tar.zst cuberite-462e0bcf46ce8e7c29e9f00ace58c2fcebffb8d1.zip |
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/Queue.h | 6 |
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); + }; }; |