Merge pull request #62 from maelstrom59/warnings

OscBundle.cpp: fix misleading-indentation warnings
This commit is contained in:
Oscar Cerna-Mandujano 2017-06-10 02:48:50 -07:00 committed by GitHub
commit 947ece7919

View File

@ -91,7 +91,7 @@ OscBundle* OscBundle::getBundle(qint32 index)
{ {
if (dynamic_cast<OscBundle*>(mContentList[index]) != 0) if (dynamic_cast<OscBundle*>(mContentList[index]) != 0)
return dynamic_cast<OscBundle*>(mContentList[index]); return dynamic_cast<OscBundle*>(mContentList[index]);
throw GetBundleException(); throw GetBundleException();
} }
/** /**
@ -105,5 +105,5 @@ OscMessage* OscBundle::getMessage(qint32 index)
{ {
if (dynamic_cast<OscMessage*>(mContentList[index]) != 0) if (dynamic_cast<OscMessage*>(mContentList[index]) != 0)
return dynamic_cast<OscMessage*>(mContentList[index]); return dynamic_cast<OscMessage*>(mContentList[index]);
throw GetMessageException(); throw GetMessageException();
} }