1
0
Fork 0

zero is the default width case

This commit is contained in:
Kevin Matz 2021-09-11 14:29:40 -04:00
parent 7ae5896bc8
commit f21a071860
1 changed files with 2 additions and 1 deletions

View File

@ -83,10 +83,11 @@ size_t range::streamSize() const
auto width = [&] () {
switch (type_.address_length) {
case ZERO: return 0;
case ONE: return 1;
case TWO: return 2;
case FOUR: return 4;
case ZERO:
default: return 0;
}
};