diff options
Diffstat (limited to 'oox/source/crypto/CryptTools.cxx')
-rw-r--r-- | oox/source/crypto/CryptTools.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/oox/source/crypto/CryptTools.cxx b/oox/source/crypto/CryptTools.cxx index ffe548d5912e..96290e0dc5fc 100644 --- a/oox/source/crypto/CryptTools.cxx +++ b/oox/source/crypto/CryptTools.cxx @@ -12,8 +12,6 @@ #include <filter/msfilter/mscodec.hxx> #include <com/sun/star/uno/RuntimeException.hpp> -#include <o3tl/make_unique.hxx> - #if USE_TLS_OPENSSL #include <openssl/evp.h> #include <openssl/sha.h> @@ -316,7 +314,7 @@ struct CryptoImpl #endif Crypto::Crypto() - : mpImpl(o3tl::make_unique<CryptoImpl>()) + : mpImpl(std::make_unique<CryptoImpl>()) { } |