hash/hmac: instantiate in containing namespace

This commit is contained in:
Danny Robson 2015-03-06 02:02:27 +11:00
parent b96ccef8ba
commit cbf385b570

View File

@ -121,5 +121,7 @@ HMAC<T>::digest (void)
#include "md5.hpp"
#include "sha1.hpp"
template class HMAC<util::hash::MD5>;
template class HMAC<util::hash::SHA1>;
namespace util { namespace hash {
template class HMAC<MD5>;
template class HMAC<SHA1>;
} }