diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-12 14:11:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-12 14:11:38 +0200 |
commit | f7b3cef45b26321f76ec24e5fd027b1c096d3118 (patch) | |
tree | e463758b3d92996dc1ea843674197a43725d113b /unoidl/source | |
parent | a17f715102a368d98f41c7f2dcdb7f5379393d9f (diff) |
Massage code to avoid warnings
Change-Id: I112f5e7c845184b9aa5285ecfa40b5bbb34ffde1
Diffstat (limited to 'unoidl/source')
-rw-r--r-- | unoidl/source/unoidl-check.cxx | 5 | ||||
-rw-r--r-- | unoidl/source/unoidl-read.cxx | 9 |
2 files changed, 6 insertions, 8 deletions
diff --git a/unoidl/source/unoidl-check.cxx b/unoidl/source/unoidl-check.cxx index ff01d24d493a..6504f0fd333a 100644 --- a/unoidl/source/unoidl-check.cxx +++ b/unoidl/source/unoidl-check.cxx @@ -206,9 +206,6 @@ void checkMap( std::exit(EXIT_FAILURE); } 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( @@ -886,6 +883,8 @@ void checkMap( } break; } + case unoidl::Entity::SORT_MODULE: + assert(false && "this cannot happen"); } } } diff --git a/unoidl/source/unoidl-read.cxx b/unoidl/source/unoidl-read.cxx index 32bd012d8bac..93bbc1907075 100644 --- a/unoidl/source/unoidl-read.cxx +++ b/unoidl/source/unoidl-read.cxx @@ -243,8 +243,6 @@ void scanMap( ->isPublished()))))) .first); switch (ent->getSort()) { - case unoidl::Entity::SORT_MODULE: - assert(false && "this cannot happen"); case unoidl::Entity::SORT_ENUM_TYPE: case unoidl::Entity::SORT_CONSTANT_GROUP: break; @@ -365,6 +363,8 @@ void scanMap( insertEntityDependency(manager, i, ent2->getBase()); break; } + case unoidl::Entity::SORT_MODULE: + assert(false && "this cannot happen"); } } } @@ -575,9 +575,6 @@ void writeEntity( rtl::Reference<unoidl::PublishableEntity> ent( static_cast<unoidl::PublishableEntity *>(i->second.entity.get())); switch (ent->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> ent2( @@ -1010,6 +1007,8 @@ void writeEntity( std::cout << "; };"; break; } + case unoidl::Entity::SORT_MODULE: + assert(false && "this cannot happen"); } } } |