mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-01 11:22:21 -06:00
* Ensure various functions working with containers are available through all headers as specified by the standard. * Add C++20 std::ssize() function.
11 lines
301 B
C++
11 lines
301 B
C++
// -*-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
|