Commit Graph

4 Commits

Author SHA1 Message Date
ec9c279052 fix(pdfccittfaxdecoder): Remove whitespace in _bitlength operator
This fixes a compilation warning with newer clang version.
Indeed, the whitespace between "" and _bitlength is no longer
allowed. This was permitted in older versions of the standard but has
since been deprecated.

```
error: identifier '_bitlength' preceded by whitespace in a literal
operator declaration is deprecated
[-Werror,-Wdeprecated-literal-operator]
     27 | constexpr uint8_t operator "" _bitlength()
        |                   ~~~~~~~~~~~~^~~~~~~~~~
        |                   operator""_bitlength
```
2025-04-29 18:39:01 +02:00
88030d1085 Issue #271: Update the license of all files 2025-04-27 12:39:06 +02:00
577866aa2f Fix comparison of integer expressions of different signedness warnings 2024-01-13 17:53:20 +01:00
bc8be2198b Issue #118: First part of splitting 2023-12-03 19:11:17 +01:00