Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 626342
Collapse All | Expand All

(-)a/src/mongo/shell/bench.cpp (+3 lines)
Lines 52-57 Link Here
52
#include "mongo/util/time_support.h"
52
#include "mongo/util/time_support.h"
53
#include "mongo/util/version.h"
53
#include "mongo/util/version.h"
54
54
55
#include <string> 
56
using namespace std; 
57
55
// ---------------------------------
58
// ---------------------------------
56
// ---- benchmarking system --------
59
// ---- benchmarking system --------
57
// ---------------------------------
60
// ---------------------------------
(-)a/src/mongo/db/dbwebserver.cpp (+2 lines)
Lines 58-63 Link Here
58
#include "mongo/util/ramlog.h"
58
#include "mongo/util/ramlog.h"
59
#include "mongo/util/version.h"
59
#include "mongo/util/version.h"
60
60
61
#include <string>
62
using namespace std;
61
63
62
namespace mongo {
64
namespace mongo {
63
65
(-)a/src/mongo/db/matcher/expression_leaf.cpp (+3 lines)
Lines 39-44 Link Here
39
#include "mongo/db/jsobj.h"
39
#include "mongo/db/jsobj.h"
40
#include "mongo/db/matcher/path.h"
40
#include "mongo/db/matcher/path.h"
41
41
42
#include <string>
43
using namespace std;
44
42
namespace mongo {
45
namespace mongo {
43
46
44
Status LeafMatchExpression::initPath(const StringData& path) {
47
Status LeafMatchExpression::initPath(const StringData& path) {
(-)a/src/mongo/db/repl/master_slave.cpp (+3 lines)
Lines 70-75 Link Here
70
#include "mongo/util/exit.h"
70
#include "mongo/util/exit.h"
71
#include "mongo/util/log.h"
71
#include "mongo/util/log.h"
72
72
73
#include <string>
74
using namespace std;
75
73
using boost::scoped_ptr;
76
using boost::scoped_ptr;
74
using std::auto_ptr;
77
using std::auto_ptr;
75
using std::cout;
78
using std::cout;
(-)a/src/mongo/util/net/miniwebserver.cpp (+3 lines)
Lines 39-44 Link Here
39
#include "mongo/util/hex.h"
39
#include "mongo/util/hex.h"
40
#include "mongo/util/log.h"
40
#include "mongo/util/log.h"
41
41
42
#include <string>
43
using namespace std;
44
42
namespace mongo {
45
namespace mongo {
43
46
44
using boost::shared_ptr;
47
using boost::shared_ptr;
(-)a/src/mongo/s/config.cpp (+3 lines)
Lines 60-65 Link Here
60
#include "mongo/util/net/message.h"
60
#include "mongo/util/net/message.h"
61
#include "mongo/util/stringutils.h"
61
#include "mongo/util/stringutils.h"
62
62
63
#include <string>
64
using namespace std;
65
63
namespace mongo {
66
namespace mongo {
64
67
65
using boost::scoped_ptr;
68
using boost::scoped_ptr;
(-)a/src/mongo/s/grid.cpp (+3 lines)
Lines 55-60 Link Here
55
#include "mongo/util/startup_test.h"
55
#include "mongo/util/startup_test.h"
56
#include "mongo/util/stringutils.h"
56
#include "mongo/util/stringutils.h"
57
57
58
#include <string>
59
using namespace std;
60
58
namespace mongo {
61
namespace mongo {
59
62
60
using std::endl;
63
using std::endl;

Return to bug 626342