Remove C++11 "= default" to maintain compatibility with older VS versions (issue #1693)

This commit is contained in:
Marshall Greenblatt 2015-08-20 10:49:11 -04:00
parent fda35eae80
commit f4e579f1e8
1 changed files with 1 additions and 1 deletions

View File

@ -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>;