Compiler warnings "type qualifiers ignored on cast result type"
glebov-andrey opened this issue · 1 comments
glebov-andrey commented
Every usage of the macro
#define PLF_LIST_BLOCK_MIN static_cast<const group_size_type>(...)
results in a warning with GCC because const
does not do anything in the cast result type.
The specific warning is -Wignored-qualifiers
.
Removing const
should fix it.
mattreecebentley commented
Thanks for that - have fixed.