[clang-tools-extra] r314677 - [clangd] Run clang-format on the source code. NFC.

Ilya Biryukov via cfe-commits cfe-commits at lists.llvm.org
Mon Oct 2 08:10:41 PDT 2017


Author: ibiryukov
Date: Mon Oct  2 08:10:41 2017
New Revision: 314677

URL: http://llvm.org/viewvc/llvm-project?rev=314677&view=rev
Log:
[clangd] Run clang-format on the source code. NFC.

Modified:
    clang-tools-extra/trunk/clangd/ProtocolHandlers.h

Modified: clang-tools-extra/trunk/clangd/ProtocolHandlers.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/ProtocolHandlers.h?rev=314677&r1=314676&r2=314677&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/ProtocolHandlers.h (original)
+++ clang-tools-extra/trunk/clangd/ProtocolHandlers.h Mon Oct  2 08:10:41 2017
@@ -50,11 +50,11 @@ public:
   virtual void onGoToDefinition(TextDocumentPositionParams Params, StringRef ID,
                                 JSONOutput &Out) = 0;
   virtual void onSwitchSourceHeader(TextDocumentIdentifier Params, StringRef ID,
-                                    JSONOutput &Out) = 0;                              
+                                    JSONOutput &Out) = 0;
 };
 
 void registerCallbackHandlers(JSONRPCDispatcher &Dispatcher, JSONOutput &Out,
-                             ProtocolCallbacks &Callbacks);
+                              ProtocolCallbacks &Callbacks);
 
 } // namespace clangd
 } // namespace clang




More information about the cfe-commits mailing list