/*=========================================================================

  Program:   SwitchCommentIdentBug

=========================================================================*/

#include "SwitchCommentIdentBug.h"

//----------------------------------------------------------------------------
void SwitchCommentIdentBug::Nothing(int x)
{
  switch (x)
    {

    case BEER:
      // blah blah
      break;

      // Friday case - Ident the comment seems to trick KWStyle
    case WINE:
    case CHEESE:
      // Yum yum
      break;
    }
}
