From 85d595c8c252910559b82952753d831eae1798e5 Mon Sep 17 00:00:00 2001 From: "dcarney@chromium.org" Date: Mon, 24 Mar 2014 19:36:59 +0000 Subject: [PATCH] deps: apply floating patch to v8 Original commit message below: fix FunctionCallbackInfo ambiguity - when compiling tools that embed v8 with g++ FunctionCallbackInfo is currently ambigous - more info: https://github.com/joyent/node/issues/7337 - original patch is here: https://codereview.appspot.com/78770045/ TBR=svenpanne@chromium.org Review URL: https://codereview.chromium.org/201573012 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@20217 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- deps/v8/include/v8.h | 1 + 1 file changed, 1 insertion(+) diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h index fe3b020..1560e71 100644 --- a/deps/v8/include/v8.h +++ b/deps/v8/include/v8.h @@ -131,6 +131,7 @@ template class WeakCallbackObject; class FunctionTemplate; class ObjectTemplate; class Data; +template class FunctionCallbackInfo; template class PropertyCallbackInfo; class StackTrace; class StackFrame; -- 2.7.4