diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-04-02 17:06:01 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-04-02 17:06:01 -0400 |
commit | d20f1d0f627c4ddf7a78fffe17ad096981c55b51 (patch) | |
tree | dc04bfb43cf1ef530cb2568f0758452eeff685e1 /util | |
parent | c04804725863ce6b8c0e4034a64f738c327fb5a5 (diff) | |
download | mongo-d20f1d0f627c4ddf7a78fffe17ad096981c55b51.tar.gz |
solaris fix
Diffstat (limited to 'util')
-rw-r--r-- | util/file.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/file.h b/util/file.h index 911598b2753..d6780944abb 100644 --- a/util/file.h +++ b/util/file.h @@ -12,7 +12,11 @@ namespace mongo { +#ifndef __sunos__ typedef uint64_t fileofs; +#else +typedef boost::uint64_t fileofs; +#endif class FileInterface { public: |