mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-03 15:17:29 +00:00
Fixes for clang
This commit is contained in:
parent
569d74d36b
commit
04e47deaf9
@ -3,6 +3,7 @@
|
||||
#include <stdexcept>
|
||||
#include <string.h>
|
||||
#include <limits.h>
|
||||
#include <algorithm>
|
||||
|
||||
Pl_PNGFilter::Pl_PNGFilter(char const* identifier, Pipeline* next,
|
||||
action_e action, unsigned int columns,
|
||||
|
@ -326,7 +326,7 @@ QUtil::hex_decode(std::string const& input)
|
||||
}
|
||||
else
|
||||
{
|
||||
result.back() += ch;
|
||||
result[result.length()-1] += ch;
|
||||
pos = 0;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user