diff options
author | archshift <admin@archshift.com> | 2014-08-13 02:54:16 -0700 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-08-13 02:54:16 -0700 |
commit | 662a1993e67a36dc320ad8b96d51be619ebf94a9 (patch) | |
tree | 51a325ec3f483d453428ee35d286063f057af795 | |
parent | bf7bc3dacd7a1a87d068bf7f42432892cb34a5f8 (diff) |
float24: Remove private default constructor
Fixes building with clang.
-rw-r--r-- | src/video_core/pica.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 81af57336..640830144 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -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; |