Pelles C forum

Pelles C => Bug reports => Topic started by: heliang6291 on December 19, 2013, 03:47:54 PM

Title: "switch....case" is abnormal
Post by: heliang6291 on December 19, 2013, 03:47:54 PM
when using "switch" and "case", the indentation is abnormal...
exp:
switch(uMsg)
{
    case WM_CREATE:
        ...
       return 0;

       case WM_SIZE:
         {
            ....
            return 0
         }
      }
Title: Re: "switch....case" is abnormal
Post by: TimoVJL on December 19, 2013, 03:53:42 PM
?????
Code: [Select]
       case WM_SIZE:
         {
            ....
            return 0
         }