mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove C++11 "= default" to maintain compatibility with older VS versions (issue #1693)
This commit is contained in:
@ -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>;
|
||||
|
Reference in New Issue
Block a user