WIP: typo bug fixed.

This commit is contained in:
Matthias Koefferlein 2021-12-04 22:46:59 +01:00
parent ab97a4722d
commit 6aae46772c
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ template<class T, bool> struct _var_user_clone_impl;
template<class T>
struct _var_user_clone_impl<T, true>
{
static T *call (const T *a) { new T (*a); }
static T *call (const T *a) { return new T (*a); }
};
template<class T>