0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 13:38:55 +02:00

modules/console: Remove ignored qualifiers (-Wignored-qualifiers).

This commit is contained in:
Jason Volk 2023-03-05 17:05:57 -08:00
parent bc381359c7
commit 198049615b

View file

@ -1397,7 +1397,7 @@ console_cmd__mem__get(opt &out, const string_view &line)
break;
case "string"_:
out << *reinterpret_cast<const char *const *const>(data(val)) << std::endl;
out << *reinterpret_cast<const char *const *>(data(val)) << std::endl;
break;
}