aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/md4/md4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/hash/md4/md4.cpp')
-rw-r--r--src/lib/hash/md4/md4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hash/md4/md4.cpp b/src/lib/hash/md4/md4.cpp
index 0f857a102..9d6d4d52e 100644
--- a/src/lib/hash/md4/md4.cpp
+++ b/src/lib/hash/md4/md4.cpp
@@ -14,7 +14,7 @@ namespace Botan {
std::unique_ptr<HashFunction> MD4::copy_state() const
{
- return std::unique_ptr<HashFunction>(new MD4(*this));
+ return std::make_unique<MD4>(*this);
}
namespace {