Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions src/core/lib/flatbuffers/stl_emulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -544,10 +544,7 @@ class span FLATBUFFERS_FINAL_CLASS {
: data_(other.data_), count_(other.count_) {}

FLATBUFFERS_CONSTEXPR_CPP14 span &operator=(const span &other)
FLATBUFFERS_NOEXCEPT {
data_ = other.data_;
count_ = other.count_;
}
FLATBUFFERS_NOEXCEPT = delete;

// Limited implementation of
// `template <class It> constexpr std::span(It first, size_type count);`.
Expand Down