1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-14 16:24:06 +00:00

Replace const X f() with X f(). NFC.

Theoretically, this improves codegen by allowing `x = f()` to move-from
the returned temporary instead of requiring a copy. In these cases I
don't expect any effect; it's just to keep the codebase clean.

Also change `operator"" _deg` to `operator""_deg`; the former spelling
was deprecated in 2023 (but, strangely, was deprecated retroactively
all the way back to C++11: see CWG2521).
This commit is contained in:
Arthur O'Dwyer
2024-12-13 10:53:24 -05:00
parent 410b33edd2
commit a8bd4854bb
3 changed files with 6 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ static constexpr ld degree = A_PI / 180;
static const ld golden_phi = (sqrt(5)+1)/2;
static const ld log_golden_phi = log(golden_phi);
constexpr ld operator"" _deg(long double deg) { return deg * A_PI / 180; }
constexpr ld operator""_deg(long double deg) { return deg * A_PI / 180; }
#endif
eGeometry geometry;