diff options
author | Mattias Andrée <maandree@kth.se> | 2024-07-18 00:00:18 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-07-18 00:00:18 +0200 |
commit | a34be09402fffe68f85fc0f8007f4489fd3a3a41 (patch) | |
tree | bca8c543d072ba6a3a9c0919c3e8023733fd9de0 /types-ramps.h | |
parent | Empty signed commit (diff) | |
download | coopgammad-a34be09402fffe68f85fc0f8007f4489fd3a3a41.tar.gz coopgammad-a34be09402fffe68f85fc0f8007f4489fd3a3a41.tar.bz2 coopgammad-a34be09402fffe68f85fc0f8007f4489fd3a3a41.tar.xz |
Update for libgamma 0.7.41.3.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | types-ramps.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/types-ramps.h b/types-ramps.h index e8e6956..6e64efc 100644 --- a/types-ramps.h +++ b/types-ramps.h @@ -20,32 +20,32 @@ union gamma_ramps { /** * Ramps with 8-bit value */ - libgamma_gamma_ramps8_t u8; + struct libgamma_gamma_ramps8 u8; /** * Ramps with 16-bit value */ - libgamma_gamma_ramps16_t u16; + struct libgamma_gamma_ramps16 u16; /** * Ramps with 32-bit value */ - libgamma_gamma_ramps32_t u32; + struct libgamma_gamma_ramps32 u32; /** * Ramps with 64-bit value */ - libgamma_gamma_ramps64_t u64; + struct libgamma_gamma_ramps64 u64; /** * Ramps with `float` value */ - libgamma_gamma_rampsf_t f; + struct libgamma_gamma_rampsf f; /** * Ramps with `double` value */ - libgamma_gamma_rampsd_t d; + struct libgamma_gamma_rampsd d; }; /** |