[clangd] Fix formatting in XRefs.cpp
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 20 Feb 2018 16:57:47 +0000 (16:57 +0000)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 20 Feb 2018 16:57:47 +0000 (16:57 +0000)
This is also to test my commit access.

llvm-svn: 325596

clang-tools-extra/clangd/XRefs.cpp

index b867a55..960deea 100644 (file)
@@ -21,7 +21,7 @@ namespace {
 // Get the definition from a given declaration `D`.
 // Return nullptr if no definition is found, or the declaration type of `D` is
 // not supported.
-const Decl* GetDefinition(const Decl* D) {
+const Decl *GetDefinition(const Decl *D) {
   assert(D);
   if (const auto *TD = dyn_cast<TagDecl>(D))
     return TD->getDefinition();
@@ -85,7 +85,7 @@ public:
       // We don't use parameter `D`, as Parameter `D` is the canonical
       // declaration, which is the first declaration of a redeclarable
       // declaration, and it could be a forward declaration.
-      if (const autoDef = GetDefinition(D)) {
+      if (const auto *Def = GetDefinition(D)) {
         Decls.push_back(Def);
       } else {
         // Couldn't find a definition, fall back to use `D`.