при компиле выдает loose indentation - в чем проблема?
|
|
RE_an1m@t0rr | Дата: Пятница, 18.05.2007, 15:51:24 | Сообщение # 1 |
Лейтенант
Группа: Скриптеры
Сообщений: 77
Статус: Не в сети
| Code | Welcome to the AMX Mod X 1.76-300 Compiler. Copyright (c) 1997-2006 ITB CompuPhase, AMX Mod X Team
D:\Games\valve\SteamApps\user\HL\1u\cstrike\addons\amxmodx\scripting\rmmod\buy.inl(36) : warning 217: loose indentation D:\Games\valve\SteamApps\user\HL\1u\cstrike\addons\amxmodx\scripting\rmmod\buy.inl(140) : warning 217: loose indentation D:\Games\valve\SteamApps\user\HL\1u\cstrike\addons\amxmodx\scripting\rmmod\buy.inl(202) : warning 217: loose indentation D:\Games\valve\SteamApps\user\HL\1u\cstrike\addons\amxmodx\scripting\rmmod\buy.inl(306) : warning 217: loose indentation Header size: 2340 bytes Code size: 42068 bytes Data size: 17168 bytes Stack/heap size: 16384 bytes; estimated max. usage=528 cells (2112 bytes) Total requirements: 77960 bytes
4 Warnings. Done.
|
|
|
| |
VEN | Дата: Пятница, 18.05.2007, 16:02:24 | Сообщение # 2 |
AMXX-Скриптинг-Эксперт
Группа: Админы
Сообщений: 1892
Статус: Не в сети
| В выравнивании кода. Плохо выровненый код: Code | if (x) y = x else y = z | Хорошо выровненый код: Code | if (x) y = x else y = z |
|
|
| |