Revision: 16729
Author: svenpa...@chromium.org
Date: Mon Sep 16 12:08:30 2013 UTC
Log: Fixed shared_library build on Windows.
BUG=v8:2879
R=u...@chromium.org
Review URL: https://codereview.chromium.org/24054008
http://code.google.com/p/v8/source/detail?r=16729
Modified:
/branches/bleeding_edge/include/v8.h
=======================================
--- /branches/bleeding_edge/include/v8.h Thu Sep 12 14:32:14 2013 UTC
+++ /branches/bleeding_edge/include/v8.h Mon Sep 16 12:08:30 2013 UTC
@@ -819,7 +819,7 @@
* 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
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.