[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / portability / std-allocator-const.rst
blob31463c2b65dd3430700379c5c8349973ab3d1e3e
1 .. title:: clang-tidy - portability-std-allocator-const
3 portability-std-allocator-const
4 ===============================
6 Report use of ``std::vector<const T>`` (and similar containers of const
7 elements). These are not allowed in standard C++, and should usually be
8 ``std::vector<T>`` instead."
10 Per C++ ``[allocator.requirements.general]``: "T is any cv-unqualified object
11 type", ``std::allocator<const T>`` is undefined. Many standard containers use
12 ``std::allocator`` by default and therefore their ``const T`` instantiations are
13 undefined.
15 libc++ defines ``std::allocator<const T>`` as an extension which will be removed
16 in the future.
18 libstdc++ and MSVC do not support ``std::allocator<const T>``:
20 .. code:: c++
22   // libstdc++ has a better diagnostic since https://gcc.gnu.org/bugzilla/show_bug.cgi?id=48101
23   std::deque<const int> deque; // error: static assertion failed: std::deque must have a non-const, non-volatile value_type
24   std::set<const int> set; // error: static assertion failed: std::set must have a non-const, non-volatile value_type
25   std::vector<int* const> vector; // error: static assertion failed: std::vector must have a non-const, non-volatile value_type
27   // MSVC
28   // error C2338: static_assert failed: 'The C++ Standard forbids containers of const elements because allocator<const T> is ill-formed.'
30 Code bases only compiled with libc++ may accrue such undefined usage. This
31 check finds such code and prevents backsliding while clean-up is ongoing.