Reviewers: Sven Panne,
Message:
PTAL
Description:
Fix windows shared library build.
[email protected]
Please review this at https://chromiumcodereview.appspot.com/26814002/
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
e3521adcb9b8a6ea4882837a5bc1fb6b5698c607..5ab8d401f2f1e903d6f09192a5cf8f6cd1a3cc7c
100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -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) {}
--
--
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.