You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/util/copy_or_nullptr.hpp

12 lines
214 B
C++

#pragma once
#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;
}