diff options
author | Daniel Jasper <djasper@google.com> | 2013-07-11 13:48:16 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-07-11 13:48:16 +0000 |
commit | 185de2499b9ff5cf0fa9df3010565373a4089cb8 (patch) | |
tree | 1c0bbea8da39f9c8000d235d5087568278801f68 /clang/lib/Format/Format.cpp | |
parent | a7f6913c08bd9a2639da2273428feae04e04063f (diff) | |
download | bcm5719-llvm-185de2499b9ff5cf0fa9df3010565373a4089cb8.tar.gz bcm5719-llvm-185de2499b9ff5cf0fa9df3010565373a4089cb8.zip |
Fix indentation problem for comments in call chains
Before:
SomeObject
// Calling someFunction on SomeObject
.someFunction();
After:
SomeObject
// Calling someFunction on SomeObject
.someFunction();
llvm-svn: 186085
Diffstat (limited to 'clang/lib/Format/Format.cpp')
-rw-r--r-- | clang/lib/Format/Format.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Format/Format.cpp b/clang/lib/Format/Format.cpp index ad390c23dcd..0dd47fe4a99 100644 --- a/clang/lib/Format/Format.cpp +++ b/clang/lib/Format/Format.cpp @@ -589,7 +589,8 @@ private: State.Column, Line.InPPDirective); } - State.Stack.back().LastSpace = State.Column; + if (!Current.isTrailingComment()) + State.Stack.back().LastSpace = State.Column; if (Current.isOneOf(tok::arrow, tok::period) && Current.Type != TT_DesignatedInitializerPeriod) State.Stack.back().LastSpace += Current.CodePointCount; |