mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 07:32:00 -04:00
Fix dead code
This commit is contained in:
parent
5561eb5415
commit
34873b6065
@ -712,7 +712,7 @@ std::string creatureFlags(int flags)
|
|||||||
if (flags & ESM::Creature::Respawn) properties += "Respawn ";
|
if (flags & ESM::Creature::Respawn) properties += "Respawn ";
|
||||||
if (flags & ESM::Creature::Weapon) properties += "Weapon ";
|
if (flags & ESM::Creature::Weapon) properties += "Weapon ";
|
||||||
if (flags & ESM::Creature::Essential) properties += "Essential ";
|
if (flags & ESM::Creature::Essential) properties += "Essential ";
|
||||||
int unused = (0xFF ^
|
int unused = (0xFFFFFFFF ^
|
||||||
(ESM::Creature::Base|
|
(ESM::Creature::Base|
|
||||||
ESM::Creature::Walks|
|
ESM::Creature::Walks|
|
||||||
ESM::Creature::Swims|
|
ESM::Creature::Swims|
|
||||||
|
@ -347,8 +347,6 @@ namespace Compiler
|
|||||||
scanner.putbackName (name, loc);
|
scanner.putbackName (name, loc);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return Parser::parseName (name, loc, scanner);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ExprParser::parseKeyword (int keyword, const TokenLoc& loc, Scanner& scanner)
|
bool ExprParser::parseKeyword (int keyword, const TokenLoc& loc, Scanner& scanner)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user