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

  Program:   SwitchCommentIdentBug

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

#include "SwitchCommentIdentBug.h"

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

    case BEER:
      // blah blah
      break;

    // Friday case
    case WINE:
    case CHEESE:
      // Yum yum
      break;
    }
}
