summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/projection.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 12:46:52 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2014-05-19 14:43:05 -0400
commitf2bfd36a6f3eb7e7e2587268be3cc12636703d42 (patch)
tree6436772fbceb28f07bbfaee528d700159beb0cec /src/mongo/db/exec/projection.h
parentc10e8282a7af38f8512e911a14889e14df8a2c6a (diff)
downloadmongo-f2bfd36a6f3eb7e7e2587268be3cc12636703d42.tar.gz
SERVER-13256: Remove pch - qualify std in headers
Diffstat (limited to 'src/mongo/db/exec/projection.h')
-rw-r--r--src/mongo/db/exec/projection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/projection.h b/src/mongo/db/exec/projection.h
index 8398eec6568..5284cfaac02 100644
--- a/src/mongo/db/exec/projection.h
+++ b/src/mongo/db/exec/projection.h
@@ -138,10 +138,10 @@ namespace mongo {
// Field names can be empty in 2.4 and before so we can't use them as a sentinel value.
// If the i-th entry is true we include the i-th field in the key.
- vector<bool> _includeKey;
+ std::vector<bool> _includeKey;
// If the i-th entry of _includeKey is true this is the field name for the i-th key field.
- vector<StringData> _keyFieldNames;
+ std::vector<StringData> _keyFieldNames;
};
} // namespace mongo