Default constructor: value initialized to 0 */
| 41 | public: |
| 42 | /** Default constructor: value initialized to 0 */ |
| 43 | PixelValue() noexcept : value{int64_t(0)} |
| 44 | { |
| 45 | } |
| 46 | /** Initialize the union with a pixel value of chosen datatype |
| 47 | * |
| 48 | * @param[in] v value. |
nothing calls this directly
no test coverage detected