Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-13 | appease analyzer | Stanislaw Halik | |
2018-05-05 | wiiyourself: clang format | Wei Shuai | |
2018-05-04 | wiiyourself: fix worst compiler warnings | Stanislaw Halik | |
2018-05-04 | wiiyourself: fix translation logspam during build | Stanislaw Halik | |
2018-05-04 | wiiyourself: add warning for scary fallthrough | Stanislaw Halik | |
2018-04-05 | tracker/wii/wiiyourself: don't link with opentrack | Stanislaw Halik | |
This isn't needed but do this for completeness' sake | |||
2018-02-15 | clean up "static" and "constexpr" types | Stanislaw Halik | |
- use `static constexpr inline' to avoid requiring explicit declarations in object code - use `const Foo* const' to maybe put into readonly binary segment (at least for ELF DSOs) - `constexpr' in function scope has storage, avoid `static' - don't use `constexpr' where there's no advantage, like arrays We'd like to avoid overhead of atomic initialization for each function call. No idea how `static constexpr' requiring storage in the standard plays with atomic initialization requirement. Hearsay points that `constexpr' without `static' in block scope behaves more to our liking. It's all hazy though. I'm not 100% sure if `static inline constexpr' has any storage. Hopefully none, like a #define, and stuff bigger than registers gets coalesced within the same module, with small stuff being immediates. | |||
2018-02-13 | tracker/wii: fix uninitialized memory access | Stanislaw Halik | |
Causes a warning in Visual Studio. Rightly so. | |||
2018-02-12 | cmake: add zh_CN | Stanislaw Halik | |
cf. #746 | |||
2018-02-09 | tracker/wii: wiiyourself bug: no where to release write thread handle | Wei Shuai | |
2018-02-05 | tracker/wii: fix MSVC narrowing conversion warnings | Stanislaw Halik | |
2018-01-31 | tracker-wii: move wiiyourself library | Stanislaw Halik | |
Paging @cpuwolf Related to: #718 |