diff options
author | Manuel Klimek <klimek@google.com> | 2013-01-07 09:25:37 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2013-01-07 09:25:37 +0000 |
commit | c6827ae775438125c5346510faf469813f54a32d (patch) | |
tree | 4e07b82f685aed8a1079083273f4835f55198760 /clang/lib/Format | |
parent | 38ba11e492695b1b80821142af5f909e08aeb599 (diff) | |
download | bcm5719-llvm-c6827ae775438125c5346510faf469813f54a32d.tar.gz bcm5719-llvm-c6827ae775438125c5346510faf469813f54a32d.zip |
Remove outdated fixme.
llvm-svn: 171716
Diffstat (limited to 'clang/lib/Format')
-rw-r--r-- | clang/lib/Format/Format.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index 7b3c575d0b1..77b044d2134 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -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)) { |