mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
14 lines
293 B
C++
14 lines
293 B
C++
|
#ifndef LLARP_UTIL_COPY_OR_NULLPTR_HPP
|
||
|
#define LLARP_UTIL_COPY_OR_NULLPTR_HPP
|
||
|
#include <memory>
|
||
|
|
||
|
template < typename T >
|
||
|
static constexpr std::unique_ptr< T >
|
||
|
copy_or_nullptr(const std::unique_ptr< T >& other)
|
||
|
{
|
||
|
if(other)
|
||
|
return std::make_unique< T >(*other);
|
||
|
return nullptr;
|
||
|
}
|
||
|
|
||
|
#endif
|