From: svenpanne@chromium.org Date: Mon, 16 Sep 2013 12:08:30 +0000 (+0000) Subject: Fixed shared_library build on Windows. X-Git-Tag: upstream/4.7.83~12489 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b41d6d491bbeb7d9f9b2e2680e178b0821e26a4;p=platform%2Fupstream%2Fv8.git Fixed shared_library build on Windows. BUG=v8:2879 R=ulan@chromium.org Review URL: https://codereview.chromium.org/24054008 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16729 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/include/v8.h b/include/v8.h index de27338..dceebeb 100644 --- a/include/v8.h +++ b/include/v8.h @@ -819,7 +819,7 @@ class V8_EXPORT HandleScope { * value. */ template -struct Maybe { +struct V8_EXPORT Maybe { Maybe() : has_value(false) {} explicit Maybe(T t) : has_value(true), value(t) {} Maybe(bool has, T t) : has_value(has), value(t) {}