From: Peter Dimov (pdimov_at_[hidden])
Date: 2023-12-28 23:42:34


Zach Laine wrote:
> Dependencies are still a nightmare in C++, so Boost.Parser can be used as a
> purely standalone library, independent of Boost.
...
> The presence of Boost headers is detected using __has_include().

That's not a good idea. Depending on random features of the environment
for ABI-incompatible changes will create many more problems than it would
solve. Just use a macro.