PARALLACTION: Fix silly Mingw 'shadowed declaration' warnings

svn-id: r39809
This commit is contained in:
Max Horn 2009-04-03 14:53:15 +00:00
parent c92210296e
commit fb6d0a7119
2 changed files with 2 additions and 2 deletions

View File

@ -811,7 +811,7 @@ void LocationParser_br::parseDoorData(ZonePtr z) {
void LocationParser_br::parseZoneTypeBlock(ZonePtr z) {
debugC(7, kDebugParser, "parseZoneTypeBlock(name: %s, type: %x)", z->_name, z->_type);
typedef void (LocationParser_br::*ZoneTypeParser)(ZonePtr z);
typedef void (LocationParser_br::*ZoneTypeParser)(ZonePtr);
ZoneTypeParser parsers[] = {
0, // no type
&LocationParser_br::parseExamineData,

View File

@ -1413,7 +1413,7 @@ void LocationParser_ns::parseSpeakData(ZonePtr z) {
void LocationParser_ns::parseZoneTypeBlock(ZonePtr z) {
debugC(7, kDebugParser, "parseZoneTypeBlock(name: %s, type: %x)", z->_name, z->_type);
typedef void (LocationParser_ns::*ZoneTypeParser)(ZonePtr z);
typedef void (LocationParser_ns::*ZoneTypeParser)(ZonePtr);
ZoneTypeParser parsers[] = {
0, // no type
&LocationParser_ns::parseExamineData,