mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Consistently format type qualifiers like const on the right (#1347)
This commit is contained in:
@@ -789,7 +789,7 @@ int main(int argc, char *argv[]) {
|
||||
}());
|
||||
if (options.palSpecType == Options::EXPLICIT) {
|
||||
fputs("\t[\n", stderr);
|
||||
for (const auto &pal : options.palSpec) {
|
||||
for (auto const &pal : options.palSpec) {
|
||||
fputs("\t\t", stderr);
|
||||
for (auto &color : pal) {
|
||||
if (color) {
|
||||
|
||||
Reference in New Issue
Block a user