Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 3a5d785092d7e85f2ad45923201f00b56dcd2f0f..bc2f5e7630c8c8722807bcd04358ca9a4b7c2d97 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -1089,7 +1089,7 @@ class V8EXPORT String : public Primitive { |
/** |
* Returns whether this string contains only one byte data. |
*/ |
- V8EXPORT bool IsOneByte() const; |
+ bool IsOneByte() const; |
/** |
* Write the contents of the string to an external buffer. |
@@ -1134,7 +1134,7 @@ class V8EXPORT String : public Primitive { |
int length = -1, |
int options = NO_OPTIONS) const; |
// One byte characters. |
- V8EXPORT int WriteOneByte(uint8_t* buffer, |
+ int WriteOneByte(uint8_t* buffer, |
int start = 0, |
Michael Starzinger
2013/01/15 10:40:59
Nit of the day: Indentation is off.
|
int length = -1, |
int options = NO_OPTIONS) const; |