Reviewers: ulan,
Description:
Fixed shared_library build on Windows.
BUG=v8:2879
Please review this at https://codereview.chromium.org/24054008/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M include/v8.h
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index
de2733838ff5abcdb05f5f84db5716440b6dd886..dceebebb698315c7ad44145ac0ea7c44c35ed7ac
100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -819,7 +819,7 @@ class V8_EXPORT HandleScope {
* value.
*/
template<class T>
-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) {}
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.