From 49b739dec2aa7f5ad385019f2668624cb392551e Mon Sep 17 00:00:00 2001 From: "ulan@chromium.org" Date: Thu, 10 Oct 2013 10:59:02 +0000 Subject: [PATCH] Fix windows shared library build. R=svenpanne@chromium.org Review URL: https://chromiumcodereview.appspot.com/26814002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@17131 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/v8.h b/include/v8.h index e3521ad..5ab8d40 100644 --- a/include/v8.h +++ b/include/v8.h @@ -847,7 +847,7 @@ class V8_EXPORT EscapableHandleScope : public HandleScope { * value. */ template -struct V8_EXPORT Maybe { +struct Maybe { Maybe() : has_value(false) {} explicit Maybe(T t) : has_value(true), value(t) {} Maybe(bool has, T t) : has_value(has), value(t) {} -- 2.7.4