Ruturaj4 updated this revision to Diff 509472.
Ruturaj4 added a comment.


1. Updating D146385 <https://reviews.llvm.org/D146385>: [clang][ExtractAPI] 
Complete declaration fragments for TagDecl types defined in a typedef #
2. Enter a brief description of the changes included in this update.
3. The first line is used as subject, next lines as comment. #
4. If you intended to create a new revision, use:
5. $ arc diff --create

declare modifyRecord function "static"


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D146385/new/

https://reviews.llvm.org/D146385

Files:
  clang/lib/ExtractAPI/ExtractAPIVisitor.cpp


Index: clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
===================================================================
--- clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
+++ clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
@@ -49,7 +49,7 @@
 }
 
 template <typename T>
-void modifyRecord(const T &Records, const llvm::StringRef &name) {
+static void modifyRecord(const T &Records, const llvm::StringRef &name) {
   for (const auto &Record : Records) {
     if (name == Record.second.get()->Name) {
       Record.second.get()->Declaration.removeLast();


Index: clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
===================================================================
--- clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
+++ clang/lib/ExtractAPI/ExtractAPIVisitor.cpp
@@ -49,7 +49,7 @@
 }
 
 template <typename T>
-void modifyRecord(const T &Records, const llvm::StringRef &name) {
+static void modifyRecord(const T &Records, const llvm::StringRef &name) {
   for (const auto &Record : Records) {
     if (name == Record.second.get()->Name) {
       Record.second.get()->Declaration.removeLast();
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to