summaryrefslogtreecommitdiff
path: root/src/mongo/rpc/object_check.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/rpc/object_check.h')
-rw-r--r--src/mongo/rpc/object_check.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/mongo/rpc/object_check.h b/src/mongo/rpc/object_check.h
index 9db3e6f0015..3b3d77012a4 100644
--- a/src/mongo/rpc/object_check.h
+++ b/src/mongo/rpc/object_check.h
@@ -32,16 +32,17 @@
// We do not use the rpc namespace here so we can specialize Validator.
namespace mongo {
- class BSONObj;
- class Status;
+class BSONObj;
+class Status;
- /**
- * A validator for BSON objects. The implementation will validate the input object
- * if validation is enabled, or return Status::OK() otherwise.
- */
- template<> struct Validator<BSONObj> {
- static Status validateLoad(const char* ptr, size_t length);
- static Status validateStore(const BSONObj& toStore);
- };
+/**
+ * A validator for BSON objects. The implementation will validate the input object
+ * if validation is enabled, or return Status::OK() otherwise.
+ */
+template <>
+struct Validator<BSONObj> {
+ static Status validateLoad(const char* ptr, size_t length);
+ static Status validateStore(const BSONObj& toStore);
+};
} // namespace mongo