arch-repo-manager/librepomgr/namedlockable.cpp

10 lines
232 B
C++
Raw Normal View History

2021-02-25 16:59:36 +01:00
#include "./namedlockable.h"
#include "./logging.h"
namespace LibRepoMgr {
template struct NamedLock<std::shared_lock<std::shared_mutex>>;
template struct NamedLock<std::unique_lock<std::shared_mutex>>;
} // namespace LibRepoMgr