Skip to content

Commit f5877f9

Browse files
authored
src/uthenticode.cpp: add missing <utility> include (#63)
Without the change build fails on upcoming gcc-13 as: [ 12%] Building CXX object uthenticode.cpp.o src/uthenticode.cpp: In constructor 'uthenticode::SignedData::SignedData(uthenticode::SignedData&&)': src/uthenticode.cpp:177:16: error: 'exchange' is not a member of 'std' 177 | p7_(std::exchange(s.p7_, nullptr)), | ^~~~~~~~
1 parent 1e0f4fc commit f5877f9

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/uthenticode.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#include <iostream>
1212
#include <memory>
1313
#include <sstream>
14+
#include <utility>
1415

1516
namespace uthenticode {
1617
namespace impl {

0 commit comments

Comments
 (0)