Remove dead file and fix gcc build.
This commit is contained in:
parent
f0aa177bf8
commit
8b8edf6e70
@ -156,7 +156,7 @@ static const char *sErrorMsgTable[] =
|
|||||||
const char *
|
const char *
|
||||||
Environment::GetErrorString(int error)
|
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 NULL;
|
||||||
return sErrorMsgTable[error];
|
return sErrorMsgTable[error];
|
||||||
}
|
}
|
||||||
|
@ -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/.
|
|
||||||
//
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user