diff options
author | Brad King <brad.king@kitware.com> | 2022-05-10 14:31:53 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-05-10 14:31:59 (GMT) |
commit | f43c54260bd1dba43acd3bd9a8fc356706ce06b3 (patch) | |
tree | b874d59d51b1fef21d047d4d29680ee07f7eab53 /Utilities/std/cm/array | |
parent | 79b64690d9ccb8b6a3feac8e6600e7c7e7dcc33a (diff) | |
parent | 95a1b2c7b8cda5593a0a369b88b6b41669f44712 (diff) | |
download | CMake-f43c54260bd1dba43acd3bd9a8fc356706ce06b3.zip CMake-f43c54260bd1dba43acd3bd9a8fc356706ce06b3.tar.gz CMake-f43c54260bd1dba43acd3bd9a8fc356706ce06b3.tar.bz2 |
Merge topic 'stl-containers-helpers'
95a1b2c7b8 stl containers: enhance compatibility with C++14, C++17 and C++20
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7244
Diffstat (limited to 'Utilities/std/cm/array')
-rw-r--r-- | Utilities/std/cm/array | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Utilities/std/cm/array b/Utilities/std/cm/array new file mode 100644 index 0000000..f344ee7 --- /dev/null +++ b/Utilities/std/cm/array @@ -0,0 +1,10 @@ +// -*-c++-*- +// vim: set ft=cpp: + +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#pragma once + +#include <array> // IWYU pragma: export + +#include <cm/bits/container_helpers.hxx> // IWYU pragma: export |