1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-30 07:23:07 +03:00

Minor tweaks to boost library detection

- Change default WITH_BOOST path to reside inside source tree
  to avoid permission problems or accidentally overwriting
  directories outside source tree.
- If system Boost installation is not found, optionally use
  header only unit test framework from location specified by
  WITH_BOOST.
- Fix extra-semi warning in provider_options.hpp.
This commit is contained in:
Teemu Ollakka
2022-09-19 12:35:03 +03:00
parent 453b81c6a7
commit 6caf006214
3 changed files with 26 additions and 7 deletions

View File

@ -57,7 +57,7 @@ namespace wsrep
class option_value
{
public:
virtual ~option_value(){};
virtual ~option_value(){}
virtual const char* as_string() const = 0;
virtual const void* get_ptr() const = 0;
};