From f4e579f1e8578b7edbc128f0fbe00d2c437c3b3c Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Thu, 20 Aug 2015 10:49:11 -0400 Subject: [PATCH] Remove C++11 "= default" to maintain compatibility with older VS versions (issue #1693) --- include/base/internal/cef_callback_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/base/internal/cef_callback_internal.h b/include/base/internal/cef_callback_internal.h index 3a70c3f38..542e84389 100644 --- a/include/base/internal/cef_callback_internal.h +++ b/include/base/internal/cef_callback_internal.h @@ -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;