diff options
author | lloyd <[email protected]> | 2010-03-03 18:17:35 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-03 18:17:35 +0000 |
commit | 0dfe4eb2d81b80c7d6541c6627c9fe0862794e2b (patch) | |
tree | 0cc699b35344cfe3f00f3a9386b0af5c7b44c833 /src/cert | |
parent | 07c250e5b1acf64ac08096e7f4c883702040c2f0 (diff) |
Remove BOTAN_DLL from templates, VC++ doesn't like it
Diffstat (limited to 'src/cert')
-rw-r--r-- | src/cert/cvc/cvc_gen_cert.h | 2 | ||||
-rw-r--r-- | src/cert/cvc/eac_obj.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cert/cvc/cvc_gen_cert.h b/src/cert/cvc/cvc_gen_cert.h index e19bb5e04..48cc73d86 100644 --- a/src/cert/cvc/cvc_gen_cert.h +++ b/src/cert/cvc/cvc_gen_cert.h @@ -21,7 +21,7 @@ namespace Botan { * This class represents TR03110 (EAC) v1.1 generalized CV Certificates */ template<typename Derived> -class BOTAN_DLL EAC1_1_gen_CVC : public EAC1_1_obj<Derived> // CRTP continuation from EAC1_1_obj +class EAC1_1_gen_CVC : public EAC1_1_obj<Derived> // CRTP continuation from EAC1_1_obj { friend class EAC1_1_obj<EAC1_1_gen_CVC>; diff --git a/src/cert/cvc/eac_obj.h b/src/cert/cvc/eac_obj.h index 60da7126e..66752b10c 100644 --- a/src/cert/cvc/eac_obj.h +++ b/src/cert/cvc/eac_obj.h @@ -17,7 +17,7 @@ namespace Botan { * TR03110 v1.1 EAC CV Certificate */ template<typename Derived> // CRTP is used enable the call sequence: -class BOTAN_DLL EAC1_1_obj : public EAC_Signed_Object +class EAC1_1_obj : public EAC_Signed_Object { public: /** |