Remove outdated fixme.

llvm-svn: 171716
This commit is contained in:
Manuel Klimek 2013-01-07 09:25:37 +00:00
parent 38ba11e492
commit c6827ae775
1 changed files with 0 additions and 3 deletions

View File

@ -134,9 +134,6 @@ public:
Line.Tokens[i].TokenLength;
// A special case for the colon of a constructor initializer as this only
// needs to be put on a new line if the line needs to be split.
// FIXME: We need to check whether we're in a preprocessor directive, even
// if all tokens fit - the next line might be a preprocessor directive,
// too, in which case we need to account for the possible escaped newline.
if (Columns > Style.ColumnLimit - (Line.InPPDirective ? 1 : 0) ||
(Annotations[i].MustBreakBefore &&
Annotations[i].Type != TokenAnnotation::TT_CtorInitializerColon)) {