diff options
| author | gingerBill <bill@gingerbill.org> | 2018-05-13 17:38:35 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-05-13 17:38:35 +0100 |
| commit | e597a8d72eba1241b944fee48c0be4d6203acc4c (patch) | |
| tree | 0e473696a04bed8cb7cde5a184016d13afbcae65 /src/types.cpp | |
| parent | de9a4b516465201c8803ae2a2181c9532be65339 (diff) | |
Fix issues with exact integer bounds and remove dead code
Diffstat (limited to 'src/types.cpp')
| -rw-r--r-- | src/types.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.cpp b/src/types.cpp index 1506640b5..efba72e57 100644 --- a/src/types.cpp +++ b/src/types.cpp @@ -1085,7 +1085,7 @@ bool is_type_polymorphic(Type *t) { bool type_has_undef(Type *t) { - t = base_type(t); + // t = base_type(t); return true; } |