summaryrefslogtreecommitdiff
path: root/db/cursor.h
diff options
context:
space:
mode:
authorunknown <Administrator@.(none)>2008-11-16 21:00:22 -0500
committerunknown <Administrator@.(none)>2008-11-16 21:00:22 -0500
commit3e53cfe1d7f31ad7fbae481d380110c9a041129c (patch)
treebbba86a63e76e536d6102412a33b52dddad6137e /db/cursor.h
parente227ff9bacc1beeb1a026b61c104e92d4cc2872b (diff)
downloadmongo-3e53cfe1d7f31ad7fbae481d380110c9a041129c.tar.gz
tostring better
Diffstat (limited to 'db/cursor.h')
-rw-r--r--db/cursor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/cursor.h b/db/cursor.h
index d997de9a0f2..3713e529868 100644
--- a/db/cursor.h
+++ b/db/cursor.h
@@ -57,7 +57,7 @@ public:
/* called before query getmore block is iterated */
virtual void checkLocation() { }
- virtual const char * toString() { return "abstract?"; }
+ virtual string toString() { return "abstract?"; }
/* used for multikey index traversal to avoid sending back dups. see JSMatcher::matches() */
set<DiskLoc> dups;
@@ -104,7 +104,7 @@ public:
BasicCursor(DiskLoc dl) : curr(dl) { init(); }
BasicCursor() { init(); }
- virtual const char * toString() { return "BasicCursor"; }
+ virtual string toString() { return "BasicCursor"; }
virtual void tailResume() {
if( state == TailPoint ) {
@@ -142,6 +142,6 @@ public:
ReverseCursor(DiskLoc dl) : BasicCursor(dl) { }
ReverseCursor() { }
- virtual const char * toString() { return "ReverseCursor"; }
+ virtual string toString() { return "ReverseCursor"; }
};