1
0

Removed redundant semicolons and re-added warning

This commit is contained in:
archshift
2014-07-22 15:36:13 -07:00
parent c0b62ef139
commit 4191be7ddb
74 changed files with 110 additions and 110 deletions

View File

@@ -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);
};
}
};