Added missing breaks in switch cases.

This commit is contained in:
Johannes Feldmann
2018-03-27 10:17:29 +02:00
parent 13baae168b
commit 3be950e704

View File

@@ -17,8 +17,10 @@ void CAddressDecoder::createInstance(Type t)
{
case Type::XML:
m_pInstance = new xmlAddressDecoder;
break;
case Type::JSON:
m_pInstance = new JSONAddressDecoder;
break;
}
}