Reviewed by Ken.
* khtml/dom/dom_string.cpp: put implementation of ascii() in #ifdef !NDEBUG
to match prototype.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@7678
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2004-09-24 Maciej Stachowiak <mjs@apple.com>
+
+ - fixed deployment build
+
+ Reviewed by Ken.
+
+ * khtml/dom/dom_string.cpp: put implementation of ascii() in #ifdef !NDEBUG
+ to match prototype.
+
2004-09-24 David Hyatt <hyatt@apple.com>
Fix for 3800316, test 37 for tables is failing on the layout tests. Make sure we don't incorrectly match
return impl ? impl->toLengthArray(len) : 0;
}
+#ifndef NDEBUG
const char *DOMString::ascii() const
{
return impl ? impl->ascii() : "(null impl)";
}
+#endif
//-----------------------------------------------------------------------------