File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
src/librawspeed/decompressors Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
2727
2828set (CMAKE_POSITION_INDEPENDENT_CODE ON )
2929
30+ set (CMAKE_CXX_STANDARD 17)
31+
3032set (INTERPROCEDURAL_OPTIMIZATION ON )
3133
3234option (BINARY_PACKAGE_BUILD "Sets march optimization to generic" OFF )
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ void AbstractLJpegDecompressor::parseDHT() {
146146 if (huff[htIndex] != nullptr )
147147 ThrowRDE (" Duplicate table definition" );
148148
149- auto ht = make_unique<HuffmanTable>();
149+ auto ht = std:: make_unique<HuffmanTable>();
150150
151151 // copy 16 bytes from input stream to number of codes per length table
152152 uint32 nCodes = ht->setNCodesPerLength (input.getBuffer (16 ));
You can’t perform that action at this time.
0 commit comments