mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-09-10 07:45:09 -04:00
Fix lto build on clang by marking HolderBase::operator() as abstract (#12)
This commit is contained in:
parent
7534a9cddb
commit
4cc467e2aa
@ -611,7 +611,7 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
struct HolderBase {
|
struct HolderBase {
|
||||||
virtual void operator()() const;
|
virtual void operator()() const = 0;
|
||||||
};
|
};
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct FuncHolder: HolderBase {
|
struct FuncHolder: HolderBase {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user