approvals / ApprovalTests.cpp

Native ApprovalTests for C++ on Linux, Mac and Windows
https://approvaltestscpp.readthedocs.io/en/latest/
Apache License 2.0
318 stars 51 forks source link

Boost ut include path is non-standard #65

Closed jwillikers closed 4 years ago

jwillikers commented 4 years ago

In UTApprovals.h, the #include <ut.hpp> should be #include <boost/ut.hpp>. Users of Boost ut are expected to include the ut header using boost/ut.hpp as can be seen in the tutorial. The ut.hpp header will almost certainly not be found by the user's compiler without explicitly modifying the searched include directories.

claremacrae commented 4 years ago

@athrun22 Hi, hopefully this is fixed now... Thanks for reporting it!

jwillikers commented 4 years ago

@claremacrae, the changes look great 👍 I'll confirm that it works tomorrow.

jwillikers commented 4 years ago

I just confirmed that the fix works. 👍Thank you, @claremacrae.