Remove C++11 "= default" to maintain compatibility with older VS versions (issue #1693)
This commit is contained in:
parent
fda35eae80
commit
f4e579f1e8
|
@ -60,7 +60,7 @@ class BindStateBase {
|
||||||
protected:
|
protected:
|
||||||
explicit BindStateBase(void (*destructor)(BindStateBase*))
|
explicit BindStateBase(void (*destructor)(BindStateBase*))
|
||||||
: ref_count_(0), destructor_(destructor) {}
|
: ref_count_(0), destructor_(destructor) {}
|
||||||
~BindStateBase() = default;
|
~BindStateBase() {}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class scoped_refptr<BindStateBase>;
|
friend class scoped_refptr<BindStateBase>;
|
||||||
|
|
Loading…
Reference in New Issue