summaryrefslogtreecommitdiff
path: root/src/mongo/db/taskqueue.h
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2012-03-26 12:58:35 -0400
committerEliot Horowitz <eliot@10gen.com>2012-03-26 12:58:52 -0400
commitbd6d0c99195e324e14390205e2bc6ff88c01e365 (patch)
treef9306b37b7d3302b4dd6e5f628fcf9886a09cf15 /src/mongo/db/taskqueue.h
parenta56eef7bd9a5d390182ea64118e11420b052a380 (diff)
downloadmongo-bd6d0c99195e324e14390205e2bc6ff88c01e365.tar.gz
replace assert with verify SERVER-1259
Diffstat (limited to 'src/mongo/db/taskqueue.h')
-rw-r--r--src/mongo/db/taskqueue.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/taskqueue.h b/src/mongo/db/taskqueue.h
index 1107d479448..20fad90db0b 100644
--- a/src/mongo/db/taskqueue.h
+++ b/src/mongo/db/taskqueue.h
@@ -84,7 +84,7 @@ namespace mongo {
}
_drain( _queues[toDrain] );
- assert( _queues[toDrain].empty() );
+ verify( _queues[toDrain].empty() );
}
private:
@@ -102,7 +102,7 @@ namespace mongo {
MT::go(v);
}
queue.clear();
- DEV assert( queue.capacity() == oldCap ); // just checking that clear() doesn't deallocate, we don't want that
+ DEV verify( queue.capacity() == oldCap ); // just checking that clear() doesn't deallocate, we don't want that
}
};