Changeset - 121409df5ccc
[Not reviewed]
default
0 1 0
Hasan Yavuz Ă–ZDERYA - 10 years ago 2015-06-20 05:23:39
hy@ozderya.net
removed unused include
1 file changed with 0 insertions and 1 deletions:
0 comments (0 inline, 0 general)
floatswap.h
Show inline comments
 
#include <byteswap.h>
 
#include <QtGlobal>
 

	
 
template <> inline float qbswap<float>(float source)
 
{
 
    float result;
 
    char* s = (char*) &source;
 
    char* t = (char*) &result;
 
    t[0] = s[3];
 
    t[1] = s[2];
 
    t[2] = s[1];
 
    t[3] = s[0];
 
    return result;
0 comments (0 inline, 0 general)