remove unnecessary semicolon

This commit is contained in:
Arvid Norberg 2009-01-13 09:31:35 +00:00
parent 0bb330225c
commit d4148055b9
1 changed files with 2 additions and 2 deletions

View File

@ -37,12 +37,12 @@ POSSIBILITY OF SUCH DAMAGE.
#ifdef TORRENT_WINDOWS
#include <malloc.h>
#define TORRENT_ALLOCA(t, n) static_cast<t*>(_alloca(sizeof(t) * (n)));
#define TORRENT_ALLOCA(t, n) static_cast<t*>(_alloca(sizeof(t) * (n)))
#else
#include <alloca.h>
#define TORRENT_ALLOCA(t, n) static_cast<t*>(alloca(sizeof(t) * (n)));
#define TORRENT_ALLOCA(t, n) static_cast<t*>(alloca(sizeof(t) * (n)))
#endif