Fix apple linker problem

This commit is contained in:
Leonetienne 2022-05-26 19:25:40 +02:00
parent 876129f05f
commit 2194ad1ce3
No known key found for this signature in database
GPG Key ID: 0297FC11AD9236EF
2 changed files with 4 additions and 4 deletions

View File

@ -205,10 +205,6 @@ namespace Leonetienne::GCrypt {
std::array<T, 16> data;
};
// Instantiate templates
template class Basic_Block<std::uint32_t>;
template class Basic_Block<std::uint16_t>;
//! This a full-sized 512-bit block
typedef Basic_Block<std::uint32_t> Block;

View File

@ -828,7 +828,11 @@ namespace Leonetienne::GCrypt {
#pragma GCC pop_options
#endif
// Instantiate templates
template class Basic_Block<std::uint32_t>;
template class Basic_Block<std::uint16_t>;
}
#undef MAT_INDEX