diff options
author | Dan Pasette <dan@10gen.com> | 2013-05-13 19:47:49 -0400 |
---|---|---|
committer | Dan Pasette <dan@10gen.com> | 2013-07-24 17:26:42 -0400 |
commit | 737faaff67f71ebee46e115f5278c48e62617a1e (patch) | |
tree | af14abde3054cf2a4932df629c5ac729e0fe847f /src/mongo/client/examples | |
parent | 899c017dd024f487d0601ec7a9b5389b723adf9a (diff) | |
download | mongo-737faaff67f71ebee46e115f5278c48e62617a1e.tar.gz |
Clean up #includes to conform with coding standard
Diffstat (limited to 'src/mongo/client/examples')
-rw-r--r-- | src/mongo/client/examples/httpClientTest.cpp | 2 | ||||
-rw-r--r-- | src/mongo/client/examples/mongoperf.cpp | 2 | ||||
-rw-r--r-- | src/mongo/client/examples/tail.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/client/examples/httpClientTest.cpp b/src/mongo/client/examples/httpClientTest.cpp index c36d8b4752c..4d1774a1c36 100644 --- a/src/mongo/client/examples/httpClientTest.cpp +++ b/src/mongo/client/examples/httpClientTest.cpp @@ -19,7 +19,7 @@ #include "mongo/base/init.h" #include "mongo/client/dbclient.h" -#include "util/net/httpclient.h" +#include "mongo/util/net/httpclient.h" #ifndef verify # define verify(x) MONGO_verify(x) diff --git a/src/mongo/client/examples/mongoperf.cpp b/src/mongo/client/examples/mongoperf.cpp index 4ea9eb74684..e535f187d59 100644 --- a/src/mongo/client/examples/mongoperf.cpp +++ b/src/mongo/client/examples/mongoperf.cpp @@ -25,7 +25,7 @@ // so we define the following macro #define MONGO_EXPOSE_MACROS 1 -#include "pch.h" +#include "mongo/pch.h" #include <iostream> diff --git a/src/mongo/client/examples/tail.cpp b/src/mongo/client/examples/tail.cpp index 90e62d279c1..d6d7a4f40ce 100644 --- a/src/mongo/client/examples/tail.cpp +++ b/src/mongo/client/examples/tail.cpp @@ -17,8 +17,8 @@ /* example of using a tailable cursor */ -#include "../../client/dbclient.h" -#include "../../util/goodies.h" +#include "mongo/client/dbclient.h" +#include "mongo/util/goodies.h" using namespace mongo; |