Skip to content

Commit

Permalink
🛠 Another workaround attempt for Android...
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhD committed Oct 29, 2023
1 parent 00c82f4 commit 75b470c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions include/ztd/idk/span.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -123,18 +123,18 @@ namespace ztd {
//////
/// @brief dynamic extent copycat
///
inline constexpr decltype(::nonstd::dynamic_extent) dynamic_extent = ::nonstd::dynamic_extent;

using ::nonstd::as_bytes;
using ::nonstd::as_writable_bytes;
using ::nonstd::make_span;
using ::nonstd::span;
using ::nonstd::operator==;
using ::nonstd::operator!=;
using ::nonstd::operator<;
using ::nonstd::operator<=;
using ::nonstd::operator>;
using ::nonstd::operator>=;
inline constexpr decltype(::nonstd::span_lite::dynamic_extent) dynamic_extent = ::nonstd::span_lite::dynamic_extent;

using ::nonstd::span_lite::as_bytes;
using ::nonstd::span_lite::as_writable_bytes;
using ::nonstd::span_lite::make_span;
using ::nonstd::span_lite::span;
using ::nonstd::span_lite::operator==;
using ::nonstd::span_lite::operator!=;
using ::nonstd::span_lite::operator<;
using ::nonstd::span_lite::operator<=;
using ::nonstd::span_lite::operator>;
using ::nonstd::span_lite::operator>=;

ZTD_IDK_INLINE_ABI_NAMESPACE_CLOSE_I_
} // namespace ztd
Expand Down

0 comments on commit 75b470c

Please sign in to comment.