Changeset 156079 in webkit for trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
- Timestamp:
- Sep 18, 2013, 8:12:09 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r156047 r156079 43 43 #include <wtf/HashMap.h> 44 44 #include <wtf/MathExtras.h> 45 #include <wtf/StdLibExtras.h> 45 46 46 47 namespace JSC { namespace DFG { … … 2243 2244 const unsigned maxRopeArguments = 3; 2244 2245 #endif 2245 OwnArrayPtr<Node*> toStringNodes = adoptArrayPtr(new Node*[numOperands]);2246 auto toStringNodes = std::make_unique<Node*[]>(numOperands); 2246 2247 for (int i = 0; i < numOperands; i++) 2247 2248 toStringNodes[i] = addToGraph(ToString, get(startOperand - i));
Note:
See TracChangeset
for help on using the changeset viewer.