From 774f8ec70c106dd6720ea14cb0dc1c9776ae8fc9 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 14 May 2009 13:19:13 -0400 Subject: [PATCH] stub createDirectClient for tools MINOR --- tools/Tool.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/Tool.cpp b/tools/Tool.cpp index 04d71e6a04c..b53b214795d 100644 --- a/tools/Tool.cpp +++ b/tools/Tool.cpp @@ -6,6 +6,14 @@ #include +namespace mongo { + DBClientBase *createDirectClient() { + cout << "no direct client available" << endl; + assert( false ); + return 0; + } +} // namespace mongo + using namespace std; using namespace mongo;