diff options
author | Lee Clagett <code@leeclagett.com> | 2019-11-02 20:36:03 +0000 |
---|---|---|
committer | Lee Clagett <code@leeclagett.com> | 2019-11-02 20:36:03 +0000 |
commit | 5d7ae2d2791c0244a221872a7ac62627abb81896 (patch) | |
tree | 137094b030f22157b6c9290a10ed32ef8d1b5d0e /contrib/epee | |
parent | Merge pull request #6117 (diff) | |
download | monero-5d7ae2d2791c0244a221872a7ac62627abb81896.tar.xz |
Adding support for hidden (anonymity) txpool
Diffstat (limited to 'contrib/epee')
-rw-r--r-- | contrib/epee/include/span.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/epee/include/span.h b/contrib/epee/include/span.h index e100452ca..59895535f 100644 --- a/contrib/epee/include/span.h +++ b/contrib/epee/include/span.h @@ -110,7 +110,8 @@ namespace epee constexpr std::size_t size() const noexcept { return len; } constexpr std::size_t size_bytes() const noexcept { return size() * sizeof(value_type); } - const T &operator[](size_t idx) const { return ptr[idx]; } + T &operator[](size_t idx) noexcept { return ptr[idx]; } + const T &operator[](size_t idx) const noexcept { return ptr[idx]; } private: T* ptr; |