aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/lzo.cpp
AgeCommit message (Collapse)Author
2018-04-22JANITORIAL: Fix formattingAdrian Frühwirth
2017-12-03ALL: Remove obsolete register keywordColin Snover
The register keyword was deprecated from the C++11 standard, <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4193.html#809>, and removed from the C++17 standard, <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4340>, so cannot exist in a well-formed C++17 program. It has never done anything in GCC <https://gcc.gnu.org/ml/gcc/2010-05/msg00113.html> and because of the way it is specified in the standard, it is “as meaningful as whitespace” <http://www.drdobbs.com/keywords-that-arent-or-comments-by-anoth/184403859>. The one remaining use of the register keyword is in the DS backend, where it is used to create a local register variable using the non-standard GCC Extended Asm feature. Closes gh-1079.
2014-10-28TONY: Remove trailing whitespaceFilippos Karapetis
2014-03-01TONY: Remove dummy definesStrangerke
2014-03-01TONY: Remove unused function declaration in lzoStrangerke
2014-03-01TONY: Indent code properly in lzoStrangerke
2014-03-01TONY: Remove dead code in lzoStrangerke
2014-02-18TONY: Make GPL headers consistent in themselves.Johannes Schickel
2012-11-12TONY: Cleanup whitespace formatting.D G Turner
This is mainly removal of extraneous blank lines, reformatting indents to tab characters and other minor non-functional changes to improve compliance with Code Formatting Conventions.
2012-09-01TONY: More renamingStrangerke
2012-06-18TONY: Remove unused stubs for LZO compressionPaul Gilbert
2012-04-30TONY: More header files and functionality addedPaul Gilbert
2012-04-29TONY: LZO decompression now working correctlyPaul Gilbert
2012-04-29TONY: Further work on LZO integrationPaul Gilbert