Just use c++17

Not worth
This commit is contained in:
eriedaberrie 2024-01-08 22:14:28 -08:00
parent f51e37e8c6
commit 11ed6e0e7d
2 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
project('shapefile-test', 'cpp',
default_options : [
'cpp_std=c++20',
'cpp_std=c++17',
'warning_level=3',
'buildtype=release',
]

View file

@ -162,9 +162,9 @@ int main(int argc, char *argv[]) {
}
all_fires.push_back(month_info{
.n_fires = n_fires_month,
.name = MONTH,
.days = std::move(all_days),
n_fires_month,
MONTH,
std::move(all_days),
});
}