Commit 49b739de authored by ulan@chromium.org's avatar ulan@chromium.org

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
parent 49b5c774
......@@ -847,7 +847,7 @@ class V8_EXPORT EscapableHandleScope : public HandleScope {
* value.
*/
template<class T>
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) {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment