TGSAI / mdio-cpp

C++, Cloud native, scalable storage engine for various types of energy data.
Apache License 2.0
6 stars 3 forks source link

get_flattened_offset() raises warning when opening void Variables #106

Closed BrianMichell closed 2 months ago

BrianMichell commented 2 months ago

warning: invalid application of ‘sizeof’ to a void type [-Wpointer-arith] 1678 | return byte_diff / sizeof(T);

Soulution

Check T for void and use the store dtype if so. Otherwise use compile time value.