1
0

Added unreachable lines backit prtected by preprocessor guards

This commit is contained in:
Tycho
2014-03-19 12:06:12 -07:00
parent 04adca3410
commit 363c92ed53
2 changed files with 10 additions and 0 deletions

View File

@@ -30,7 +30,13 @@ AString cObjective::TypeToString(eType a_Type)
case otStatBlockMine: return "stat.mineBlock";
case otStatEntityKill: return "stat.killEntity";
case otStatEntityKilledBy: return "stat.entityKilledBy";
// clang optimisises this line away then warns that it has done so.
#if !defined(__clang__)
default: return "";
#endif
}
}