summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--netfs/lib/entCache.cpp11
1 files changed, 2 insertions, 9 deletions
diff --git a/netfs/lib/entCache.cpp b/netfs/lib/entCache.cpp
index 26d275b..6af0e24 100644
--- a/netfs/lib/entCache.cpp
+++ b/netfs/lib/entCache.cpp
@@ -115,13 +115,6 @@ Group::hasMember(uid_t u) const
return (members.find(u) != members.end());
}
-template std::shared_ptr<User> EntCache<User>::getEntry<std::string>(const std::string &) const;
-template std::shared_ptr<User> EntCache<User>::getEntry<uid_t>(const uid_t &) const;
-template void EntCache<User>::getName(const gid_t &, std::string *) const;
-template void EntCache<User>::getID(const std::string &, gid_t *) const;
-
-template std::shared_ptr<Group> EntCache<Group>::getEntry<std::string>(const std::string &) const;
-template std::shared_ptr<Group> EntCache<Group>::getEntry<gid_t>(const gid_t &) const;
-template void EntCache<Group>::getName(const gid_t &, std::string *) const;
-template void EntCache<Group>::getID(const std::string &, gid_t *) const;
+template class EntCache<User>;
+template class EntCache<Group>;