mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
added unsigned types
This commit is contained in:
@ -58,15 +58,33 @@ inline bool contiguous<bool>() {return true;}
|
|||||||
template<>
|
template<>
|
||||||
inline bool contiguous<char>() {return true;}
|
inline bool contiguous<char>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<unsigned char>() {return true;}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
inline bool contiguous<short>() {return true;}
|
inline bool contiguous<short>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<unsigned short>() {return true;}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
inline bool contiguous<int>() {return true;}
|
inline bool contiguous<int>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<unsigned int>() {return true;}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
inline bool contiguous<long>() {return true;}
|
inline bool contiguous<long>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<unsigned long>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<long long>() {return true;}
|
||||||
|
|
||||||
|
template<>
|
||||||
|
inline bool contiguous<unsigned long long>() {return true;}
|
||||||
|
|
||||||
template<>
|
template<>
|
||||||
inline bool contiguous<float>() {return true;}
|
inline bool contiguous<float>() {return true;}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user