From c4d9c3cd27de0e62a0243631ddbc6f9533d3227e Mon Sep 17 00:00:00 2001 From: Nicolas Morales Date: Tue, 2 May 2023 10:05:56 -0700 Subject: [PATCH] #253: move mdarray.hpp to include/mdspan instead of experimental --- include/experimental/mdarray | 2 +- include/mdspan/{experimental => }/mdarray.hpp | 4 ++-- tests/test_mdarray_ctors.cpp | 2 +- tests/test_mdarray_to_mdspan.cpp | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename include/mdspan/{experimental => }/mdarray.hpp (90%) diff --git a/include/experimental/mdarray b/include/experimental/mdarray index 3d5d21cf..7a1cba8a 100644 --- a/include/experimental/mdarray +++ b/include/experimental/mdarray @@ -24,4 +24,4 @@ #define MDSPAN_IMPL_PROPOSED_NAMESPACE experimental #endif -#include "../mdspan/experimental/mdarray.hpp" +#include "../mdspan/mdarray.hpp" diff --git a/include/mdspan/experimental/mdarray.hpp b/include/mdspan/mdarray.hpp similarity index 90% rename from include/mdspan/experimental/mdarray.hpp rename to include/mdspan/mdarray.hpp index 44f15b49..5f9baacd 100644 --- a/include/mdspan/experimental/mdarray.hpp +++ b/include/mdspan/mdarray.hpp @@ -24,6 +24,6 @@ #define MDSPAN_IMPL_PROPOSED_NAMESPACE Experimental #endif -#include "../mdspan.hpp" -#include "../../experimental/__p1684_bits/mdarray.hpp" +#include "mdspan.hpp" +#include "../experimental/__p1684_bits/mdarray.hpp" diff --git a/tests/test_mdarray_ctors.cpp b/tests/test_mdarray_ctors.cpp index 5231be0e..334156e8 100644 --- a/tests/test_mdarray_ctors.cpp +++ b/tests/test_mdarray_ctors.cpp @@ -13,7 +13,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //@HEADER -#include +#include #include #include diff --git a/tests/test_mdarray_to_mdspan.cpp b/tests/test_mdarray_to_mdspan.cpp index c4aae152..71c22c3d 100644 --- a/tests/test_mdarray_to_mdspan.cpp +++ b/tests/test_mdarray_to_mdspan.cpp @@ -13,7 +13,7 @@ // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //@HEADER -#include +#include #include #include