Try fix test.

This commit is contained in:
Nikolai Kochetov 2020-04-19 18:41:35 +03:00
parent e970203ab2
commit e969f66aca
2 changed files with 2 additions and 0 deletions

View File

@ -442,6 +442,7 @@ Context::Context(const Context &) = default;
Context & Context::operator=(const Context &) = default;
SharedContextHolder::SharedContextHolder(SharedContextHolder &&) noexcept = default;
SharedContextHolder::SharedContextHolder() = default;
SharedContextHolder::~SharedContextHolder() = default;
SharedContextHolder::SharedContextHolder(std::unique_ptr<ContextShared> shared_context)
: shared(std::move(shared_context)) {}

View File

@ -136,6 +136,7 @@ using IHostContextPtr = std::shared_ptr<IHostContext>;
struct SharedContextHolder
{
~SharedContextHolder();
SharedContextHolder();
SharedContextHolder(std::unique_ptr<ContextShared> shared_context);
SharedContextHolder(SharedContextHolder &&) noexcept;