1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 16:15:31 +00:00

Change a switch to a series of if/else if/.../else, hopefully resolving compilation issues on OSX and Linux.

This commit is contained in:
AnyOldName3 2016-07-21 01:36:14 +01:00
parent 2b829f7f7b
commit 7243583963
2 changed files with 13 additions and 14 deletions

View file

@ -164,6 +164,10 @@ bool ConfigurationManager::loadConfig(const boost::filesystem::path& path,
return false; return false;
} }
const int escape_hash_filter::sEscape = '@';
const int escape_hash_filter::sEscapeIdentifier = 'a';
const int escape_hash_filter::sHashIdentifier = 'h';
escape_hash_filter::escape_hash_filter() : mNext(), mSeenNonWhitespace(false), mFinishLine(false) escape_hash_filter::escape_hash_filter() : mNext(), mSeenNonWhitespace(false), mFinishLine(false)
{ {
} }

View file

@ -71,9 +71,9 @@ struct ConfigurationManager
*/ */
struct escape_hash_filter : public boost::iostreams::input_filter struct escape_hash_filter : public boost::iostreams::input_filter
{ {
static const int sEscape = '@'; static const int sEscape;
static const int sHashIdentifier = 'h'; static const int sHashIdentifier;
static const int sEscapeIdentifier = 'a'; static const int sEscapeIdentifier;
escape_hash_filter(); escape_hash_filter();
virtual ~escape_hash_filter(); virtual ~escape_hash_filter();
@ -114,22 +114,17 @@ int unescape_hash_filter::get(Source & src)
{ {
int nextChar = boost::iostreams::get(src); int nextChar = boost::iostreams::get(src);
int intended; int intended;
switch (nextChar) if (nextChar == escape_hash_filter::sEscapeIdentifier)
{
case escape_hash_filter::sEscapeIdentifier:
intended = escape_hash_filter::sEscape; intended = escape_hash_filter::sEscape;
break; else if (nextChar == escape_hash_filter::sHashIdentifier)
case escape_hash_filter::sHashIdentifier:
intended = '#'; intended = '#';
break; else if (nextChar == boost::iostreams::WOULD_BLOCK)
case boost::iostreams::WOULD_BLOCK: {
expectingIdentifier = true; expectingIdentifier = true;
intended = nextChar; intended = nextChar;
break;
default:
intended = '?';
break;
} }
else
intended = '?';
return intended; return intended;
} }
else else