summaryrefslogtreecommitdiff
path: root/iterhash.h
diff options
context:
space:
mode:
Diffstat (limited to 'iterhash.h')
-rw-r--r--iterhash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/iterhash.h b/iterhash.h
index 0911fee..5adecd3 100644
--- a/iterhash.h
+++ b/iterhash.h
@@ -41,12 +41,12 @@ private:
};
#ifdef WORD64_AVAILABLE
-CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word64, HashTransformation>;
-CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word64, MessageAuthenticationCode>;
+CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word64, HashTransformation>;
+CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word64, MessageAuthenticationCode>;
#endif
CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word32, HashTransformation>;
-CRYPTOPP_DLL_TEMPLATE_CLASS IteratedHashBase<word32, MessageAuthenticationCode>;
+CRYPTOPP_STATIC_TEMPLATE_CLASS IteratedHashBase<word32, MessageAuthenticationCode>;
//! .
template <class T, class B, class BASE>