Commit 7d7a56dc authored by cwzwarich@webkit.org's avatar cwzwarich@webkit.org

Not reviewed.

Fix the build with newer GCCs and remove some extra whitespae.

* bindings/js/SerializedScriptValue.cpp:
(WebCore::uint8_t):


git-svn-id: svn://svn.chromium.org/blink/trunk@80951 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent c234e475
2011-03-12 Cameron Zwarich <zwarich@apple.com>
Not reviewed.
Fix the build with newer GCCs and remove some extra whitespae.
* bindings/js/SerializedScriptValue.cpp:
(WebCore::uint8_t):
2011-03-12 Cameron Zwarich <zwarich@apple.com>
Rubber-stamped by Oliver Hunt.
......
......@@ -221,7 +221,7 @@ template <typename T> static void writeLittleEndian(Vector<uint8_t>& buffer, T v
}
#endif
template <> static void writeLittleEndian<uint8_t>(Vector<uint8_t>& buffer, uint8_t value)
template <> void writeLittleEndian<uint8_t>(Vector<uint8_t>& buffer, uint8_t value)
{
buffer.append(value);
}
......@@ -245,7 +245,6 @@ template <typename T> static bool writeLittleEndian(Vector<uint8_t>& buffer, con
return true;
}
class CloneSerializer : CloneBase {
public:
static bool serialize(ExecState* exec, JSValue value, Vector<uint8_t>& out)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment