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
```
This commit is contained in:
Jean Felder
2025-04-07 13:25:47 +02:00
committed by Jakub Melka
parent f5d73eb38e
commit ec9c279052

View File

@ -28,7 +28,7 @@ namespace pdf
{
template<char... Digits>
constexpr uint8_t operator "" _bitlength()
constexpr uint8_t operator ""_bitlength()
{
return sizeof...(Digits);
}