0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 09:06:21 +01:00

warning fix

This commit is contained in:
Eliot Horowitz 2010-02-04 14:08:34 -05:00
parent fe4d8d585e
commit 8ef72cbff5

View File

@ -29,7 +29,7 @@ namespace mongo {
int locked;
public:
MutexInfo() : locked(0) , timeLocked(0) {
MutexInfo() : timeLocked(0) , locked(0) {
start = curTimeMicros64();
}
void entered() {