Reviewers: Jakob,

Description:
Merged r12868 into trunk branch.

Fixed visibility attribute for GetPointerFromInternalField

[email protected]


Please review this at https://chromiumcodereview.appspot.com/11366106/

SVN Base: https://v8.googlecode.com/svn/trunk

Affected files:
  M include/v8.h
  M src/version.cc


Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 7d9cccc9d99d44cfb7525e0720f018c18207f638..dae18897ef636d2bdcd20144431d5a9111e66001 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -1613,7 +1613,7 @@ class Object : public Value {
    * otherwise use a combination of GetInternalField, External::Cast and
    * External::Value.
    */
-  V8_DEPRECATED(void* GetPointerFromInternalField(int index));
+  V8EXPORT V8_DEPRECATED(void* GetPointerFromInternalField(int index));

   /**
* Sets a native pointer in an internal field. Deprecated. If the pointer is
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index 1480a6c512b112fcc698a97a72efec028a82fb16..66d2098452c0f7c6193a5db5f768893f3000d9d4 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     15
 #define BUILD_NUMBER      1
-#define PATCH_LEVEL       0
+#define PATCH_LEVEL       1
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to