Changeset 27206 in webkit for trunk/JavaScriptCore/kjs/identifier.h
- Timestamp:
- Oct 28, 2007, 9:11:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/identifier.h
r26996 r27206 1 1 /* 2 * This file is part of the KDE libraries 3 * Copyright (C) 2003 Apple Computer, Inc 2 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. 4 3 * 5 4 * This library is free software; you can redistribute it and/or … … 35 34 explicit Identifier(UString::Rep* rep) : _ustring(add(rep)) { } 36 35 explicit Identifier(const UString& s) : _ustring(add(s.rep())) { } 36 37 // Special constructor for cases where we overwrite an object in place. 38 Identifier(PlacementNewAdoptType) : _ustring(PlacementNewAdopt) { } 37 39 38 40 const UString& ustring() const { return _ustring; }
Note:
See TracChangeset
for help on using the changeset viewer.