summaryrefslogtreecommitdiffstats
path: root/src/common/lz4_compression.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-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.
2021-05-24lz4_compression: Make use of std::spanLioncash1-2/+3
Allows making the incoming data stream non-allocating.
2020-08-15common/compression: Roll back std::span changesLioncash1-8/+11
Seems like all compilers don't support std::span yet.
2020-08-15common: Make use of [[nodiscard]] where applicableLioncash1-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.
2020-07-25lz4_compression: Make use of std::span in interfacesLioncash1-6/+4
Allows compressing the data and size parameters into one.
2019-04-15common/{lz4_compression, zstd_compression}: Add missing header guardsLioncash1-0/+2
These two files were missing the #pragma once directive.
2019-03-29Addressed feedbackunknown1-0/+55