include/cf_fixup.h
author Jens Alfke <jens@mooseyard.com>
Tue Sep 29 15:46:42 2009 -0700 (2009-09-29)
changeset 9 629f61203db1
permissions -rw-r--r--
* Merged in jbm's changes for Linux compatibility, fixing Mac compatibility in the process :)
* Fixed two regressions having to do with the _previousTrailerPosition in VersionDictionary.cpp.
* Made sure RTTI is enabled in the OttomanTest target because gtest requires it.
     1 typedef double CFSwappedFloat64;
     2 
     3 static inline CFSwappedFloat64 CFConvertDoubleHostToSwapped(double d) { return d; };
     4 static inline double CFConvertDoubleSwappedToHost(CFSwappedFloat64 d) { return d; };
     5 
     6 #define OSSwapHostToLittleInt32(x) (x)
     7 #define OSSwapHostToLittleInt16(x) (x)
     8 #define OSSwapLittleToHostInt32(x) (x)
     9 #define OSSwapLittleToHostInt16(x) (x)