diff options
author | Aaron <aaron@10gen.com> | 2009-04-06 15:19:30 -0400 |
---|---|---|
committer | Aaron <aaron@10gen.com> | 2009-04-06 15:19:30 -0400 |
commit | 57288fe0b21ec4c788627417181ebdeadaca0065 (patch) | |
tree | 2ae6ef6ada597c3fda7f32d7f8fa40422c73f6e3 /dbtests | |
parent | 09a327160b3a08c4c1fcbe45dcf43fbbb74be787 (diff) | |
download | mongo-57288fe0b21ec4c788627417181ebdeadaca0065.tar.gz |
fix compiler warning
Diffstat (limited to 'dbtests')
-rw-r--r-- | dbtests/querytests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbtests/querytests.cpp b/dbtests/querytests.cpp index e3167b08afe..3602fd25697 100644 --- a/dbtests/querytests.cpp +++ b/dbtests/querytests.cpp @@ -317,7 +317,7 @@ namespace QueryTests { count( 2 ); } private: - void count( int c ) const { + void count( unsigned long long c ) const { ASSERT_EQUALS( c, client().count( "querytests.BasicCount", BSON( "a" << 4 ) ) ); } }; |