summaryrefslogtreecommitdiff
path: root/bson
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2011-01-24 16:53:00 -0500
committerEliot Horowitz <eliot@10gen.com>2011-01-24 16:53:00 -0500
commit50182cce101041a52645c668e3aaa18f99d66962 (patch)
tree9ed1fcd2f29b456db4db8a63b9f867cacf2c93a0 /bson
parent25d5328e04635171aa8722e1dcbb6fcfb5620f45 (diff)
downloadmongo-50182cce101041a52645c668e3aaa18f99d66962.tar.gz
keyboard error
Diffstat (limited to 'bson')
-rw-r--r--bson/oid.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bson/oid.h b/bson/oid.h
index 13657986ed9..bf06ee1852f 100644
--- a/bson/oid.h
+++ b/bson/oid.h
@@ -38,7 +38,7 @@ namespace mongo {
*/
class OID {
public:
- OID() : a(0) b(0) { }
+ OID() : a(0), b(0) { }
/** init from a 24 char hex string */
explicit OID(const string &s) { init(s); }