NO

Author Topic: "switch....case" is abnormal  (Read 2370 times)

heliang6291

  • Guest
"switch....case" is abnormal
« 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
         }
      }

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: "switch....case" is abnormal
« Reply #1 on: December 19, 2013, 03:53:42 PM »
?????
Code: [Select]
       case WM_SIZE:
         {
            ....
            return 0
         }
May the source be with you