diff options
author | Andy Schwerin <schwerin@10gen.com> | 2012-10-23 11:36:51 -0400 |
---|---|---|
committer | Andy Schwerin <schwerin@10gen.com> | 2012-10-23 11:36:51 -0400 |
commit | 99bda3b10dc4920abb592bcd0d3630573fc4ad1d (patch) | |
tree | 36cf722e3f3abcdf7fb22be28e146792ed87841e /src/mongo | |
parent | 972c32cd09c6dba54b8976f7b78da22146c0078b (diff) | |
download | mongo-99bda3b10dc4920abb592bcd0d3630573fc4ad1d.tar.gz |
Fix windows build, reorder includes in random.h to follow our conventions.
Diffstat (limited to 'src/mongo')
-rw-r--r-- | src/mongo/platform/random.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/platform/random.cpp b/src/mongo/platform/random.cpp index 5eb596186ab..3a7cb1c5f72 100644 --- a/src/mongo/platform/random.cpp +++ b/src/mongo/platform/random.cpp @@ -15,12 +15,12 @@ * limitations under the License. */ +#include "mongo/platform/basic.h" + #include "mongo/platform/random.h" #include <cstdlib> -#include "mongo/platform/basic.h" - namespace mongo { #ifdef _WIN32 |