OpenSystemsDevelopment
/
qpdf
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
04e47deaf9585b58733e57e750b6f58017d013ce
Authored by
Jay Berkenbilt
2018-01-14 19:10:36 -0500
1 parent
569d74d3
Fixes for clang
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletions
libqpdf/Pl_PNGFilter.cc
libqpdf/QUtil.cc
libqpdf/Pl_PNGFilter.cc
View file @
04e47de
...
...
@@ -3,6 +3,7 @@
3
3
#include <stdexcept>
4
4
#include <string.h>
5
5
#include <limits.h>
6
+#include <algorithm>
6
7
7
8
Pl_PNGFilter::Pl_PNGFilter(char const* identifier, Pipeline* next,
8
9
action_e action, unsigned int columns,
...
...
libqpdf/QUtil.cc
View file @
04e47de
...
...
@@ -326,7 +326,7 @@ QUtil::hex_decode(std::string const& input)
326
326
}
327
327
else
328
328
{
329
- result
.back()
+= ch;
329
+ result
[result.length()-1]
+= ch;
330
330
pos = 0;
331
331
}
332
332
}
...
...