Just use c++17
Not worth
This commit is contained in:
parent
7c0d4e2a57
commit
947d0c8a60
|
@ -1,6 +1,6 @@
|
||||||
project('shapefile-test', 'cpp',
|
project('shapefile-test', 'cpp',
|
||||||
default_options : [
|
default_options : [
|
||||||
'cpp_std=c++20',
|
'cpp_std=c++17',
|
||||||
'warning_level=3',
|
'warning_level=3',
|
||||||
'buildtype=release',
|
'buildtype=release',
|
||||||
]
|
]
|
||||||
|
|
|
@ -162,9 +162,9 @@ int main(int argc, char *argv[]) {
|
||||||
}
|
}
|
||||||
|
|
||||||
all_fires.push_back(month_info{
|
all_fires.push_back(month_info{
|
||||||
.n_fires = n_fires_month,
|
n_fires_month,
|
||||||
.name = MONTH,
|
MONTH,
|
||||||
.days = std::move(all_days),
|
std::move(all_days),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue