From f56ec818fba673d51e3205a13026333e65eb7f6f Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 15 Feb 2017 15:18:11 -0800 Subject: [PATCH] Support 5 argument member function --- native_mate/template_util.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/native_mate/template_util.h b/native_mate/template_util.h index e1632a2d566f..d4ce819d7e84 100644 --- a/native_mate/template_util.h +++ b/native_mate/template_util.h @@ -60,6 +60,13 @@ template struct is_member_function_pointer : true_type {}; +template +struct is_member_function_pointer : true_type {}; +template +struct is_member_function_pointer : true_type {}; + template struct is_same : public false_type {}; template struct is_same : true_type {};