Title: [171694] trunk/Source/_javascript_Core
- Revision
- 171694
- Author
- [email protected]
- Date
- 2014-07-28 14:07:42 -0700 (Mon, 28 Jul 2014)
Log Message
Unreviewed build fix after r171682.
* replay/EncodedValue.h: Don't mark the inlined Vector<char> specialization
as an exported symbol.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (171693 => 171694)
--- trunk/Source/_javascript_Core/ChangeLog 2014-07-28 20:48:50 UTC (rev 171693)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-07-28 21:07:42 UTC (rev 171694)
@@ -1,3 +1,10 @@
+2014-07-28 Brian J. Burg <[email protected]>
+
+ Unreviewed build fix after r171682.
+
+ * replay/EncodedValue.h: Don't mark the inlined Vector<char> specialization
+ as an exported symbol.
+
2014-07-28 Mark Hahnenberg <[email protected]>
REGRESSION: JSObjectSetPrototype() does not work on result of JSGetGlobalObject()
Modified: trunk/Source/_javascript_Core/replay/EncodedValue.h (171693 => 171694)
--- trunk/Source/_javascript_Core/replay/EncodedValue.h 2014-07-28 20:48:50 UTC (rev 171693)
+++ trunk/Source/_javascript_Core/replay/EncodedValue.h 2014-07-28 21:07:42 UTC (rev 171694)
@@ -139,8 +139,8 @@
// Specialize byte vectors to use base64 encoding.
template<> struct EncodingTraits<Vector<char>> {
typedef Vector<char> DecodedType;
- static JS_EXPORT_PRIVATE EncodedValue encodeValue(const DecodedType&);
- static JS_EXPORT_PRIVATE bool decodeValue(EncodedValue&, DecodedType&);
+ static EncodedValue encodeValue(const DecodedType&);
+ static bool decodeValue(EncodedValue&, DecodedType&);
};
template<typename T>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes