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:
|
||||
explicit BindStateBase(void (*destructor)(BindStateBase*))
|
||||
: ref_count_(0), destructor_(destructor) {}
|
||||
~BindStateBase() = default;
|
||||
~BindStateBase() {}
|
||||
|
||||
private:
|
||||
friend class scoped_refptr<BindStateBase>;
|
||||
|
|
Loading…
Reference in New Issue