View Single Post
OneMore
Senior Member
Join Date: Feb 2019
Old 07-13-2022 , 03:41   Re: warning suppression in SM 1.11
Reply With Quote #7

Quote:
Originally Posted by Marttt View Post
You didn't paste the warning console output...
I did not paste it because it does not help

Anyway here it is:
Quote:
Compiling gungame.sp...
SourcePawn Compiler 1.11.0.6863
Copyright (c) 1997-2006 ITB CompuPhase
Copyright (c) 2004-2021 AlliedModders LLC

gungame.sp(1223) : warning 217: inconsistent indentation (did you mix tabs and spaces?)
gungame.sp(172 : warning 217: inconsistent indentation (did you mix tabs and spaces?)
Code size: 145284 bytes
Data size: 40412 bytes
Stack/heap size: 33292 bytes
Total requirements: 218988 bytes
As I mentioned, gungame.sp is 600 lines long. But it is the complicated plugin with a lot of includes:
Quote:
#include <sourcemod>
#include <sdktools>
#include <cstrike>

#include <colors>
#include <gungame_const>
#include <gungame>
#include <gungame_config>
#include <langutils>

#if defined WITH_SDKHOOKS
#include <sdkhooks>
#endif

#undef REQUIRE_PLUGIN
#include <gungame_stats>

#include "gungame/gungame.h"
#include "gungame/menu.h"
#include "gungame/config.h"
#include "gungame/keyvalue.h"
#include "gungame/event.h"
#include "gungame/offset.h"
#include "gungame/util.h"

#if defined GUNGAME_DEBUG
#include "gungame/debug.h"
#include "gungame/debug.sp"
#endif

#include "gungame/stock.sp"
#include "gungame/util.sp"
#include "gungame/natives.sp"
#include "gungame/offset.sp"
#include "gungame/config.sp"
#include "gungame/keyvalue.sp"
#include "gungame/event.sp"
#include "gungame/menu.sp"
#include "gungame/commands.sp"
Thanks for the advice to request help in the github regarding suppression. I'll try to do it.
OneMore is offline