diff options
author | lloyd <[email protected]> | 2014-05-01 02:22:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-05-01 02:22:54 +0000 |
commit | 6472e22b40c1a48847820b856cd8a2e25c981b95 (patch) | |
tree | 976156491c1ba087d4fedc1f0f4ba2409293f884 /src/lib/cert | |
parent | d2e86fc7dca835058bcc91ce0fb0cc787383a7bb (diff) |
Add default constructors to work around VC2013 issue. Github #17
Diffstat (limited to 'src/lib/cert')
-rw-r--r-- | src/lib/cert/x509/ocsp.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/cert/x509/ocsp.h b/src/lib/cert/x509/ocsp.h index b2a06b9a4..2a4866455 100644 --- a/src/lib/cert/x509/ocsp.h +++ b/src/lib/cert/x509/ocsp.h @@ -40,6 +40,8 @@ class BOTAN_DLL Request class BOTAN_DLL Response { public: + Response() {} + Response(const Certificate_Store& trusted_roots, const std::vector<byte>& response); |