File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1515 steps :
1616 - uses : actions/checkout@v2
1717 - name : apt
18- run : sudo apt-get install g++ cmake lcov
18+ run : sudo apt-get install g++ cmake lcov libboost-all-dev
1919 - name : submodule
2020 run : git submodule update --init --recursive
2121 - name : test
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ sudo: true
66
77addons :
88 apt :
9- packages : clang-format colordiff lcov
9+ packages : clang-format colordiff lcov libboost-all-dev
1010
1111script :
1212 - ./build.sh -t
1313 - ./build.sh -c
1414
1515after_success :
16- - bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"
16+ - bash <(curl -s https://codecov.io/bash) -f coverage.info || echo "Codecov did not collect coverage reports"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace bc = boost::core;
1111int main () {
1212 INIReader r{" ./test/fixtures/config.ini" };
1313
14- const auto & v1 = r.Get <std::string>(" section1" , " any" );
14+ const auto & v1 = r.Get <std::string>(" section1" , " any" );
1515 const auto & v2 = r.Get <int >(" section1" , " any" );
1616 const auto & v3 = r.Get <double >(" section1" , " any" );
1717 const auto & v4 = r.GetVector <float >(" section2" , " any_vec" );
@@ -32,4 +32,4 @@ int main() {
3232 std::cout << " v5 = " ; for (auto & v : v5) std::cout << v << " " ; std::cout << " , which is type: " << bc::demangle (typeid (v5).name ()) << std::endl;
3333
3434 return 0 ;
35- }
35+ }
You can’t perform that action at this time.
0 commit comments