* kjs/list.h: Use explicit in constructor (as appropriate).
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@16076
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-08-28 Darin Adler <darin@apple.com>
+
+ Reviewed by Geoff.
+
+ * kjs/list.h: Use explicit in constructor (as appropriate).
+
2006-08-24 Nikolas Zimmermann <zimmermann@kde.org>
Reviewed, tweaked and landed by ap
class List {
public:
List();
- List(bool needsMarking);
+ explicit List(bool needsMarking);
~List() { deref(); }
List(const List &b) : _impBase(b._impBase), _needsMarking(false) {