Skip to content
Snippets Groups Projects
Commit 0a46018b authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[PL/Refl] Improve compiler error messages

parent 5390a73f
No related branches found
No related tags found
No related merge requests found
......@@ -357,7 +357,7 @@ void forEachReflectedFlattenedIPDataAccessor(
}
else
{
static_assert(is_raw_data<Member>::value,
static_assert(is_raw_data_v<Member>,
"The current member is not reflectable, so we "
"expect it to be raw data.");
......@@ -443,7 +443,7 @@ void forEachReflectedFlattenedIPDataAccessor(ReflData const& reflection_data,
}
else
{
static_assert(detail::is_raw_data<Member>::value,
static_assert(detail::is_raw_data_v<Member>,
"The current member is not reflectable, so we "
"expect it to be raw data.");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment