diff options
author | Mattes D <github@xoft.cz> | 2014-07-24 22:28:42 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-07-24 22:28:42 +0200 |
commit | 741fd41781d455c2b8e821bf2a1211a734afbd24 (patch) | |
tree | 1fa7a405639450c289090e0412f092bc92b6dfbe /src/OSSupport/Queue.h | |
parent | Added a queue for setting chunk data. (diff) | |
parent | Made redundant semi not an error, fixed one more. (diff) | |
download | cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar.gz cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar.bz2 cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar.lz cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar.xz cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.tar.zst cuberite-741fd41781d455c2b8e821bf2a1211a734afbd24.zip |
Diffstat (limited to 'src/OSSupport/Queue.h')
-rw-r--r-- | src/OSSupport/Queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OSSupport/Queue.h b/src/OSSupport/Queue.h index 269f9db41..bf4d7f004 100644 --- a/src/OSSupport/Queue.h +++ b/src/OSSupport/Queue.h @@ -26,14 +26,14 @@ struct cQueueFuncs public: /// Called when an Item is deleted from the queue without being returned - static void Delete(T) {}; + 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) { UNUSED(a_existing); UNUSED(a_new); - }; + } }; |