diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 11:37:40 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-07-10 13:39:14 +0100 |
commit | 1d088b04027ec4d0058c89203350bdca6d28cc3f (patch) | |
tree | d9e9c25d378e8e70cba9734dbee71979a4e47522 /unoidl | |
parent | 07dcd679ff58d2f3ab991b5e3e66a2046a8dfde6 (diff) |
coverity#1224980 Missing break in switch
Change-Id: I17379f596fd8b48bd1015538eacc5265cfa83a82
Diffstat (limited to 'unoidl')
-rw-r--r-- | unoidl/source/unoidl-check.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unoidl/source/unoidl-check.cxx b/unoidl/source/unoidl-check.cxx index 3cf9bcc6b6d3..137d9503c55d 100644 --- a/unoidl/source/unoidl-check.cxx +++ b/unoidl/source/unoidl-check.cxx @@ -194,6 +194,7 @@ void checkMap( switch (entA->getSort()) { case unoidl::Entity::SORT_MODULE: assert(false && "this cannot happen"); + //deliberate fall-through anyway case unoidl::Entity::SORT_ENUM_TYPE: { rtl::Reference<unoidl::EnumTypeEntity> ent2A( |