forked from OSchip/llvm-project
[Orc] (Hopefully) Fix a missing typedef.
llvm-svn: 319845
This commit is contained in:
parent
b791cf3e46
commit
64fac884a7
|
@ -36,7 +36,7 @@ public:
|
|||
/// @brief Returns true if the pool is empty.
|
||||
bool empty() const;
|
||||
private:
|
||||
using RefCountType = std::atomic_uint64_t;
|
||||
using RefCountType = std::atomic<uint64_t>;
|
||||
using PoolMap = StringMap<RefCountType>;
|
||||
using PoolMapEntry = StringMapEntry<RefCountType>;
|
||||
mutable std::mutex PoolMutex;
|
||||
|
|
Loading…
Reference in New Issue