diff options
Diffstat (limited to 'include/span.h')
-rw-r--r-- | include/span.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/span.h b/include/span.h index 0e8516933c6..4ea200f5494 100644 --- a/include/span.h +++ b/include/span.h @@ -81,7 +81,7 @@ public: span(const span &other) : data_(other.data_), size_(other.size_) {} - ~span(){}; + ~span() = default; span &operator=(const span &other) { |