Skip to content
Snippets Groups Projects
Commit 327c5ab7 authored by Ed Maros's avatar Ed Maros
Browse files

Added unhandled enumerators to switch statement so as to quiet compiler

parent fea3d14d
No related branches found
No related tags found
1 merge request!195Resolve "Unknown compression mode: 10(0xa) error reading frames with framecpp 3.0.2"
......@@ -791,8 +791,14 @@ namespace FrameCPP
case FR_VECT_16C:
cm = MODE_ZERO_SUPPRESS_WORD_8;
break;
case FR_VECT_1U:
case FR_VECT_C:
default:
case FR_VECT_STRING:
//-----------------------------------------------
// NOTE:
// These are imposible conditions. Doing this
// to keep the compiler quiet.
//-----------------------------------------------
break;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment