summaryrefslogtreecommitdiff
path: root/netfs/lib/entCache.cpp
blob: d9f61df5fe8c0c60290d27eaf8815b364c4009e7 (plain)
1
2
3
4
5
6
7
8
9
#include "entCache.impl.h"

static_assert(std::is_nothrow_move_constructible_v<User>);
static_assert(std::is_nothrow_move_assignable_v<User>);
static_assert(std::is_nothrow_move_constructible_v<Group>);
static_assert(std::is_nothrow_move_assignable_v<Group>);

template class EntCache<User>;
template class EntCache<Group>;