* platform/AtomicString.h:
(WebCore::AtomicString::AtomicString):
(WebCore::AtomicString::operator NSString*):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17421
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-10-29 Geoffrey Garen <ggaren@apple.com>
+
+ Rolled out accidental commit.
+
+ * platform/AtomicString.h:
+ (WebCore::AtomicString::AtomicString):
+ (WebCore::AtomicString::operator NSString*):
+
2006-10-29 Geoffrey Garen <ggaren@apple.com>
RS by Darin.
static void remove(StringImpl*);
+#ifdef __OBJC__
+ AtomicString(NSString* s) : m_string(add(String(s).impl())) { }
+ operator NSString*() const { return m_string; }
+#endif
+
AtomicString(const DeprecatedString&);
DeprecatedString deprecatedString() const;