Disable copy and move.
This commit is contained in:
parent
ac6ea57675
commit
351e84b04e
1 changed files with 2 additions and 0 deletions
|
@ -48,6 +48,8 @@ namespace duck {
|
||||||
typedef std::ptrdiff_t difference_type;
|
typedef std::ptrdiff_t difference_type;
|
||||||
|
|
||||||
EnvBase() = default;
|
EnvBase() = default;
|
||||||
|
EnvBase (const EnvBase&) = delete;
|
||||||
|
EnvBase (EnvBase&&) = delete;
|
||||||
virtual ~EnvBase() noexcept = default;
|
virtual ~EnvBase() noexcept = default;
|
||||||
|
|
||||||
std::string_view operator[] (std::string_view name) const noexcept;
|
std::string_view operator[] (std::string_view name) const noexcept;
|
||||||
|
|
Loading…
Reference in a new issue