2
0
mirror of https://github.com/boostorg/pfr.git synced 2026-01-19 04:22:13 +00:00

Fix spelling in fields_count.hpp

This commit is contained in:
Andrzej Krzemieński
2020-09-30 08:31:33 +02:00
committed by GitHub
parent 5c94e55195
commit aeaa6698e5

View File

@@ -221,7 +221,7 @@ constexpr std::size_t fields_count() noexcept {
#ifdef __cpp_lib_is_aggregate
static_assert(
std::is_aggregate<type>::value // Does not return `true` for build in types.
std::is_aggregate<type>::value // Does not return `true` for built-in types.
|| std::is_scalar<type>::value,
"====================> Boost.PFR: Type must be aggregate initializable."
);