diff --git a/sourcepawn/jit/environment.cpp b/sourcepawn/jit/environment.cpp index 7d6a50ea..6c2feb67 100644 --- a/sourcepawn/jit/environment.cpp +++ b/sourcepawn/jit/environment.cpp @@ -156,7 +156,7 @@ static const char *sErrorMsgTable[] = const char * Environment::GetErrorString(int error) { - if (error < 1 || error > (sizeof(sErrorMsgTable) / sizeof(sErrorMsgTable[0]))) + if (error < 1 || error > int(sizeof(sErrorMsgTable) / sizeof(sErrorMsgTable[0]))) return NULL; return sErrorMsgTable[error]; } diff --git a/sourcepawn/jit/sp_vm_engine.cpp b/sourcepawn/jit/sp_vm_engine.cpp deleted file mode 100644 index 5c6718f0..00000000 --- a/sourcepawn/jit/sp_vm_engine.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// vim: set sts=2 ts=8 sw=2 tw=99 et: -// -// Copyright (C) 2006-2015 AlliedModders LLC -// -// This file is part of SourcePawn. SourcePawn is free software: you can -// redistribute it and/or modify it under the terms of the GNU General Public -// License as published by the Free Software Foundation, either version 3 of -// the License, or (at your option) any later version. -// -// You should have received a copy of the GNU General Public License along with -// SourcePawn. If not, see http://www.gnu.org/licenses/. -// -