diff options
author | Eliot Horowitz <eliot@10gen.com> | 2011-01-24 16:53:00 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2011-01-24 16:53:00 -0500 |
commit | 50182cce101041a52645c668e3aaa18f99d66962 (patch) | |
tree | 9ed1fcd2f29b456db4db8a63b9f867cacf2c93a0 /bson | |
parent | 25d5328e04635171aa8722e1dcbb6fcfb5620f45 (diff) | |
download | mongo-50182cce101041a52645c668e3aaa18f99d66962.tar.gz |
keyboard error
Diffstat (limited to 'bson')
-rw-r--r-- | bson/oid.h | 2 |
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); } |