C1808: Too many nested switch-statements

[ERROR]

Description

The number of nested switches was too high.

Example
  switch(i0) {

  
    switch(i1) {

  
      switch(i2) {

  
      ...

  
Tips

Use "if-else if" statements instead or reduce nesting level.

See also