summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2009-06-09 11:43:04 -0400
committerEliot Horowitz <eliot@10gen.com>2009-06-09 11:43:04 -0400
commit00df88c21d12a230550dc250fb20fde0f1aedf26 (patch)
tree027bdafe3b99d8bd32d814d7b775262b6eb20920 /client
parenta525339af5c8ea2cc670fada418f3ea0f255f4e0 (diff)
downloadmongo-00df88c21d12a230550dc250fb20fde0f1aedf26.tar.gz
moved BSONObjIterator::more to BSONObjectIteratore::moreWEOO()
added _more temporarily SERVER-101
Diffstat (limited to 'client')
-rw-r--r--client/dbclient.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/dbclient.cpp b/client/dbclient.cpp
index 1da8c5cf1b4..92e78fe835c 100644
--- a/client/dbclient.cpp
+++ b/client/dbclient.cpp
@@ -530,10 +530,8 @@ namespace mongo {
stringstream ss;
bool first = 1;
- for ( BSONObjIterator i(keys); i.more(); ) {
+ for ( BSONObjIterator i(keys); i._more(); ) {
BSONElement f = i.next();
- if ( f.eoo() )
- break;
if ( first )
first = 0;