help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

C++ indentation problem with "<"


From: d2003xx
Subject: C++ indentation problem with "<"
Date: 9 Jan 2003 03:10:10 -0800

Hello!

It is:

// START

// Problem source is the "<<"; And I find that anything starting with "<" will 
cause
// this.
ErrorPrinter& ErrorPrinter_i::operator << (char const _number)
{
  return this->operator,(static_cast<int>(_number));
}

// Following line should start at the first column, but it's indented to the 
third.
  ErrorPrinter& ErrorPrinter_i::operator , (short const _number)
  {
    return this->operator,(static_cast<int>(_number));
  }

// END

Does somebody know how to solve this??


reply via email to

[Prev in Thread] Current Thread [Next in Thread]