Changeset 62677 in webkit for trunk/JavaScriptCore/parser/ParserArena.cpp
- Timestamp:
- Jul 7, 2010, 9:53:49 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/ParserArena.cpp
r47664 r62677 1 1 /* 2 * Copyright (C) 2009 Apple Inc. All rights reserved.2 * Copyright (C) 2009, 2010 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 28 28 29 29 #include "Nodes.h" 30 #include <wtf/PassOwnPtr.h> 30 31 31 32 namespace JSC { … … 34 35 : m_freeableMemory(0) 35 36 , m_freeablePoolEnd(0) 36 , m_identifierArena( new IdentifierArena)37 , m_identifierArena(adoptPtr(new IdentifierArena)) 37 38 { 38 39 }
Note:
See TracChangeset
for help on using the changeset viewer.