If an if-statement has a comment associated with the else part
if(..)
{
}
// do something else
else
{
..
}
that comment is associated with the first statement inside the else, instead:
if(..)
{
..
}
else
{
// do something else
..
}
Original issue reported on code.google.com by edskodevries on 2007-04-14 15:53:41
Original issue reported on code.google.com by
edskodevries
on 2007-04-14 15:53:41