[llvm] 0dec593 - [ORC] Make JITDylib::AsynchronousSymbolQuerySet private.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Fri Nov 19 21:16:21 PST 2021


Author: Lang Hames
Date: 2021-11-19T21:15:18-08:00
New Revision: 0dec59305a52e51be8ef70a3ccdc59b5235663b7

URL: https://github.com/llvm/llvm-project/commit/0dec59305a52e51be8ef70a3ccdc59b5235663b7
DIFF: https://github.com/llvm/llvm-project/commit/0dec59305a52e51be8ef70a3ccdc59b5235663b7.diff

LOG: [ORC] Make JITDylib::AsynchronousSymbolQuerySet private.

This type does not need to be public

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/Core.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/Core.h b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
index 70256c12ea17..362e8ab8e296 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/Core.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/Core.h
@@ -927,9 +927,6 @@ class JITDylib : public ThreadSafeRefCountedBase<JITDylib>,
   friend class MaterializationResponsibility;
 public:
 
-  using AsynchronousSymbolQuerySet =
-    std::set<std::shared_ptr<AsynchronousSymbolQuery>>;
-
   JITDylib(const JITDylib &) = delete;
   JITDylib &operator=(const JITDylib &) = delete;
   JITDylib(JITDylib &&) = delete;
@@ -1067,6 +1064,9 @@ class JITDylib : public ThreadSafeRefCountedBase<JITDylib>,
   std::vector<JITDylibSP> getReverseDFSLinkOrder();
 
 private:
+  using AsynchronousSymbolQuerySet =
+    std::set<std::shared_ptr<AsynchronousSymbolQuery>>;
+
   using AsynchronousSymbolQueryList =
       std::vector<std::shared_ptr<AsynchronousSymbolQuery>>;
 


        


More information about the llvm-commits mailing list