diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2013-04-12 15:49:31 +0200 |
|---|---|---|
| committer | Lars Knoll <lars.knoll@digia.com> | 2013-04-12 17:30:23 +0200 |
| commit | 1cdcfa500ac971727d57db8edcb41abe38516e5a (patch) | |
| tree | 495ebdf272370938951de20fdc0eb81c9e137a5a /src/3rdparty/masm/assembler/AssemblerBuffer.h | |
| parent | fd09b7d9b54ccb4d737747ee7fba26f15f4901cd (diff) | |
Apply modifications on top of WTF/JSC
* Extend FunctionPtr by another overloaded constructor that allows passing 6 arguments
* Work around STL <> WTF incompatibilities with iterators
* Remove unused printInternal functions that rely on CString/WTFString
Change-Id: Ie0cc503288871cb594716e47e03dd509b1b5ac85
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/3rdparty/masm/assembler/AssemblerBuffer.h')
| -rw-r--r-- | src/3rdparty/masm/assembler/AssemblerBuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/masm/assembler/AssemblerBuffer.h b/src/3rdparty/masm/assembler/AssemblerBuffer.h index 54080bdac6..277ec1043c 100644 --- a/src/3rdparty/masm/assembler/AssemblerBuffer.h +++ b/src/3rdparty/masm/assembler/AssemblerBuffer.h @@ -65,7 +65,7 @@ namespace JSC { public: AssemblerBuffer() : m_storage(inlineCapacity) - , m_buffer(m_storage.begin()) + , m_buffer(&(*m_storage.begin())) , m_capacity(inlineCapacity) , m_index(0) { @@ -164,7 +164,7 @@ namespace JSC { m_capacity += m_capacity / 2 + extraCapacity; m_storage.grow(m_capacity); - m_buffer = m_storage.begin(); + m_buffer = &(*m_storage.begin()); } private: |
