[Orc] (Hopefully) Fix a missing typedef.

llvm-svn: 319845
This commit is contained in:
Lang Hames 2017-12-05 22:14:35 +00:00
parent b791cf3e46
commit 64fac884a7
1 changed files with 1 additions and 1 deletions

View File

@ -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;