Revision: 17131
Author:   [email protected]
Date:     Thu Oct 10 10:59:02 2013 UTC
Log:      Fix windows shared library build.

[email protected]

Review URL: https://chromiumcodereview.appspot.com/26814002
http://code.google.com/p/v8/source/detail?r=17131

Modified:
 /branches/bleeding_edge/include/v8.h

=======================================
--- /branches/bleeding_edge/include/v8.h        Tue Oct  1 09:56:04 2013 UTC
+++ /branches/bleeding_edge/include/v8.h        Thu Oct 10 10:59:02 2013 UTC
@@ -847,7 +847,7 @@
  * 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) {}

--
--
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.

Reply via email to