]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - bytecode/UnlinkedInstructionStream.cpp
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / bytecode / UnlinkedInstructionStream.cpp
index 2e952a41d06da4eba1dbecaa598b38d715b04b1e..568dbb6820d90c698f84120619317e4823a2d145 100644 (file)
@@ -75,7 +75,7 @@ static void append32(unsigned char*& ptr, unsigned value)
     *(ptr++) = (value >> 24) & 0xff;
 }
 
-UnlinkedInstructionStream::UnlinkedInstructionStream(const Vector<UnlinkedInstruction>& instructions)
+UnlinkedInstructionStream::UnlinkedInstructionStream(const Vector<UnlinkedInstruction, 0, UnsafeVectorOverflow>& instructions)
     : m_instructionCount(instructions.size())
 {
     Vector<unsigned char> buffer;