Start using Date_t. Can anyone think of a better name?

This commit is contained in:
Mathias Stearn
2009-12-03 17:25:22 -05:00
parent 5660a25e9b
commit dcf3a10eea
20 changed files with 59 additions and 32 deletions

View File

@@ -215,7 +215,7 @@ namespace ReplTests {
deleteAll( ns() );
}
private:
mutable unsigned long long date_;
mutable Date_t date_;
};
class InsertAutoId : public Base {
@@ -305,7 +305,7 @@ namespace ReplTests {
insert( BSON( "_id" << 1 ) );
}
private:
mutable unsigned long long date_;
mutable Date_t date_;
};
class UpdateSameField : public Base {