1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-02-09 20:04:47 +01:00

float24: Remove private default constructor

Fixes building with clang.
This commit is contained in:
archshift 2014-08-13 02:54:16 -07:00
parent bf7bc3dacd
commit 662a1993e6

@ -549,8 +549,6 @@ struct float24 {
}
private:
float24() = default;
// Stored as a regular float, merely for convenience
// TODO: Perform proper arithmetic on this!
float value;