| 758 | const int SelectControlCeiling = 2; |
| 759 | |
| 760 | const char* SelectControlString(int cont) |
| 761 | { |
| 762 | switch (cont) { |
| 763 | case 0: return "Flatten"; |
| 764 | case 1: return "DontFlatten"; |
| 765 | |
| 766 | case SelectControlCeiling: |
| 767 | default: return "Bad"; |
| 768 | } |
| 769 | } |
| 770 | |
| 771 | const int LoopControlCeiling = (int)LoopControlShift::PartialCount + 1; |
| 772 |
nothing calls this directly
no outgoing calls
no test coverage detected