diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-11-12 11:19:44 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-11-16 09:56:45 +0100 |
commit | fa44237d76b66b6664870c3927b65a0ef89022e4 (patch) | |
tree | 2f60626fda466410facd55c259ff70ddeaf366db /src/span.h | |
parent | ad09c287cb7033a28f8d0a002c1ca4f194c12f11 (diff) |
doc: Fix typos in endif header comments
Diffstat (limited to 'src/span.h')
-rw-r--r-- | src/span.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/span.h b/src/span.h index 830164514b..168162e309 100644 --- a/src/span.h +++ b/src/span.h @@ -248,4 +248,4 @@ template <typename T> constexpr auto UCharSpanCast(Span<T> s) -> Span<typename s /** Like MakeSpan, but for (const) unsigned char member types only. Only works for (un)signed char containers. */ template <typename V> constexpr auto MakeUCharSpan(V&& v) -> decltype(UCharSpanCast(MakeSpan(std::forward<V>(v)))) { return UCharSpanCast(MakeSpan(std::forward<V>(v))); } -#endif +#endif // BITCOIN_SPAN_H |