From dd0bb98c224dafe9f9f2e9fd5a4e758d0f891a3a Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 12 Oct 2015 12:43:04 -0400 Subject: [PATCH] Remove final keyword to fix builds with non-C++11 compilers (issue #1725) --- include/base/internal/cef_bind_internal.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/base/internal/cef_bind_internal.h b/include/base/internal/cef_bind_internal.h index 1fc6b2ac2..a097978be 100644 --- a/include/base/internal/cef_bind_internal.h +++ b/include/base/internal/cef_bind_internal.h @@ -2554,7 +2554,7 @@ template struct BindState; template -struct BindState final : public BindStateBase { +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef false_type IsWeakCall; typedef Invoker<0, BindState, RunType> InvokerType; @@ -2574,7 +2574,7 @@ struct BindState final : public BindStateBase { }; template -struct BindState final : public BindStateBase { +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; typedef Invoker<1, BindState, RunType> InvokerType; @@ -2602,7 +2602,7 @@ struct BindState final : public BindStateBase { }; template -struct BindState final : public BindStateBase { +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; typedef Invoker<2, BindState, RunType> InvokerType; @@ -2634,7 +2634,7 @@ struct BindState final : public BindStateBase { template -struct BindState final +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; @@ -2670,7 +2670,7 @@ struct BindState final template -struct BindState final +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; @@ -2710,7 +2710,7 @@ struct BindState final template -struct BindState final +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; @@ -2753,7 +2753,7 @@ struct BindState final template -struct BindState final +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall; @@ -2799,7 +2799,7 @@ struct BindState final template -struct BindState final +struct BindState : public BindStateBase { typedef Runnable RunnableType; typedef IsWeakMethod::value, P1> IsWeakCall;