Skip to content

Commit

Permalink
Merge pull request #3940 from tautschnig/deprecation-nil_typet-unreac…
Browse files Browse the repository at this point in the history
…hable

Remove unreachable statement [blocks: #3800]
  • Loading branch information
tautschnig authored Jan 26, 2019
2 parents ab81ffc + 4bdd1ae commit 70b96ab
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jbmc/src/java_bytecode/java_types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ typet java_type_from_char(char t)
case 'd': return java_double_type();
case 'z': return java_boolean_type();
case 'a': return java_reference_type(void_typet());
default: UNREACHABLE; return nil_typet();
default:
UNREACHABLE;
}
}

Expand Down

0 comments on commit 70b96ab

Please sign in to comment.