cucumber / cucumber-cpp

Support for writing Cucumber step definitions in C++
MIT License
306 stars 131 forks source link

Fix boost 1.7x compatibility (fix #238) #239

Closed dmeehan1968 closed 3 years ago

dmeehan1968 commented 3 years ago

Summary

Boost 1.7x introduced changes to log_build_info method in the reporter class, which broke Cucumber-cpp.

Details

Add the missing bool parameter to the log_build_info method

Motivation and Context

To keep track with Boost releases.

How Has This Been Tested?

This problem caused Cucumber-cpp to fail to build when configured with CUKE_ENABLE_BOOST_TEST=on.

Tested with make --build against Boost 1.74

Types of changes

Checklist:

coveralls commented 3 years ago

Coverage Status

Coverage remained the same at 62.47% when pulling 28a224565781dc8c46337a7f82e83cbe8d83d9cd on dmeehan1968:fix-238-boost-1.7x-compat into dd424c1a900cb41c5db9d481714eb3471ce195e3 on cucumber:master.

dmeehan1968 commented 3 years ago

Duplicate of #225