diff options
author | lloyd <[email protected]> | 2009-04-01 16:42:38 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-04-01 16:42:38 +0000 |
commit | 3afb86663583b982e1eab8f46d07fc3d51260602 (patch) | |
tree | 3cdf7950fb61f96d8d8b9d37dc71f68dba5f1bbc /src/cert/cvc/cvc_cert.h | |
parent | 327115405b0f483c2b432e2233f355a349b1f9d7 (diff) |
Use C++0x std::shared_ptr<> instead of TR1's
Diffstat (limited to 'src/cert/cvc/cvc_cert.h')
-rw-r--r-- | src/cert/cvc/cvc_cert.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cert/cvc/cvc_cert.h b/src/cert/cvc/cvc_cert.h index 17671d332..0bc162c0c 100644 --- a/src/cert/cvc/cvc_cert.h +++ b/src/cert/cvc/cvc_cert.h @@ -59,7 +59,7 @@ class BOTAN_DLL EAC1_1_CVC : public EAC1_1_gen_CVC<EAC1_1_CVC>//Signed_Object * Construct a CVC from a data source * @param source the data source */ - EAC1_1_CVC(std::tr1::shared_ptr<DataSource>& source); + EAC1_1_CVC(std::shared_ptr<DataSource>& source); /** * Construct a CVC from a file |