summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2009-12-22 16:42:49 -0500
committerDwight <dmerriman@gmail.com>2009-12-22 16:42:49 -0500
commit15535d09065e59d25e1b240f57f6a4f21cff0451 (patch)
tree8f421360158443c343a1933376820944e189e502 /client
parent09fa026665bf064231ef4bb40adbc4382a4aeac8 (diff)
downloadmongo-15535d09065e59d25e1b240f57f6a4f21cff0451.tar.gz
compile windows / vcproj
Diffstat (limited to 'client')
-rw-r--r--client/clientOnly.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/clientOnly.cpp b/client/clientOnly.cpp
index 8789713d9ae..b315afd2e74 100644
--- a/client/clientOnly.cpp
+++ b/client/clientOnly.cpp
@@ -15,7 +15,7 @@
* limitations under the License.
*/
-#include "../stdafx.h"
+#include "stdafx.h"
#include "../client/dbclient.h"
#include "../db/dbinfo.h"
#include "../db/dbhelpers.h"
@@ -49,10 +49,10 @@ namespace mongo {
bool haveLocalShardingInfo( const string& ns ){
return false;
}
-
+/*
auto_ptr<CursorIterator> Helpers::find( const char *ns , BSONObj query , bool requireIndex ){
uassert( "Helpers::find can't be used in client" , 0 );
- auto_ptr<CursorIterator> i;
- return i;
+ return auto_ptr<CursorIterator>(0);
}
+*/
}