File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ concurrency:
88
99jobs :
1010 build-linux :
11- runs-on : ubuntu-latest
11+ runs-on : ubuntu-22.04
1212 steps :
1313 - uses : actions/checkout@v4
1414 with :
2020 path : ' fluxengine-testdata'
2121 - name : apt
2222 run : |
23- sudo apt install libudev-dev libsqlite3-dev protobuf-compiler libwxgtk3.2 -dev libfmt-dev libprotobuf-dev
23+ sudo apt install libudev-dev libsqlite3-dev protobuf-compiler libwxgtk3.0-gtk3 -dev libfmt-dev libprotobuf-dev
2424 - name : make
2525 run : CXXFLAGS="-Wp,-D_GLIBCXX_ASSERTIONS" make -j`nproc` -C fluxengine
2626
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ namespace grammar
4646 static constexpr auto rule =
4747 dsl::list (dsl::p<member>, dsl::sep(dsl::lit_c<' ,' >));
4848 static constexpr auto value = lexy::fold_inplace<std::vector<unsigned >>(
49- {},
49+ std::initializer_list< unsigned > {},
5050 [](std::vector<unsigned >& result, const Member& item)
5151 {
5252 if (item.start < 0 )
@@ -83,7 +83,8 @@ namespace grammar
8383 static constexpr auto rule =
8484 dsl::list (dsl::p<ch>, dsl::sep(dsl::ascii::space));
8585 static constexpr auto value =
86- lexy::fold_inplace<std::vector<CylinderHead>>({},
86+ lexy::fold_inplace<std::vector<CylinderHead>>(
87+ std::initializer_list<CylinderHead>{},
8788 [](std::vector<CylinderHead>& result,
8889 const std::vector<CylinderHead>& item)
8990 {
You can’t perform that action at this time.
0 commit comments