summaryrefslogtreecommitdiffstats
path: root/src/common/lz4_compression.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fssystem: rework for yuzu styleLiam2023-08-151-1/+1
|
* vfs: expand support for NCA readingLiam2023-08-151-0/+2
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-231-3/+2
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* lz4_compression: Make use of std::spanLioncash2021-05-241-2/+3
| | | | Allows making the incoming data stream non-allocating.
* common/compression: Roll back std::span changesLioncash2020-08-151-8/+11
| | | | Seems like all compilers don't support std::span yet.
* common: Make use of [[nodiscard]] where applicableLioncash2020-08-151-4/+5
| | | | | | Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
* lz4_compression: Make use of std::span in interfacesLioncash2020-07-251-6/+4
| | | | Allows compressing the data and size parameters into one.
* common/{lz4_compression, zstd_compression}: Add missing header guardsLioncash2019-04-151-0/+2
| | | | These two files were missing the #pragma once directive.
* Addressed feedbackunknown2019-03-291-0/+55