diff options
| author | 2014-08-13 02:54:16 -0700 | |
|---|---|---|
| committer | 2014-08-13 02:54:16 -0700 | |
| commit | 662a1993e67a36dc320ad8b96d51be619ebf94a9 (patch) | |
| tree | 51a325ec3f483d453428ee35d286063f057af795 | |
| parent | Merge pull request #39 from bunnei/hid-minor-improvements (diff) | |
| download | yuzu-662a1993e67a36dc320ad8b96d51be619ebf94a9.tar.gz yuzu-662a1993e67a36dc320ad8b96d51be619ebf94a9.tar.xz yuzu-662a1993e67a36dc320ad8b96d51be619ebf94a9.zip | |
float24: Remove private default constructor
Fixes building with clang.
Diffstat (limited to '')
| -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 { | |||
| 549 | } | 549 | } |
| 550 | 550 | ||
| 551 | private: | 551 | private: |
| 552 | float24() = default; | ||
| 553 | |||
| 554 | // Stored as a regular float, merely for convenience | 552 | // Stored as a regular float, merely for convenience |
| 555 | // TODO: Perform proper arithmetic on this! | 553 | // TODO: Perform proper arithmetic on this! |
| 556 | float value; | 554 | float value; |