1
0

xspan.hpp 798 B

123456789101112131415161718192021
  1. /***************************************************************************
  2. * Copyright (c) Johan Mabille, Sylvain Corlay and Wolf Vollprecht *
  3. * Copyright (c) QuantStack *
  4. * *
  5. * Distributed under the terms of the BSD 3-Clause License. *
  6. * *
  7. * The full license is in the file LICENSE, distributed with this software. *
  8. ****************************************************************************/
  9. #ifndef XTL_XSPAN_HPP
  10. #define XTL_XSPAN_HPP
  11. #include "xspan_impl.hpp"
  12. namespace xtl
  13. {
  14. using tcb::span;
  15. constexpr std::ptrdiff_t dynamic_extent = tcb::dynamic_extent;
  16. }
  17. #endif