| 611 | // struct used by ParseFormattedLine function |
| 612 | // contains variables used to unindent the case blocks |
| 613 | struct switchVariables |
| 614 | { |
| 615 | int switchBracketCount; |
| 616 | int unindentDepth; |
| 617 | bool unindentCase; |
| 618 | }; |
| 619 | |
| 620 | switchVariables sw; // switch variables struct |
| 621 | vector<switchVariables> switchStack; // stack vector of switch variables |
nothing calls this directly
no outgoing calls
no test coverage detected