removed useless union
[psensor.git] / src / lib / measure.h
index f95ce51..b25fcff 100644 (file)
 #define UNKNOWN_DBL_VALUE DBL_MIN
 
 struct measure {
-       union value {
-               double d_num;
-               uint64_t ui64_num;
-       } value;
+       double value;
 
        struct timeval time;
 };