Skip to content

Commit

Permalink
lzokay: Include <iterator> explicitly for building on gcc12, clang13 …
Browse files Browse the repository at this point in the history
…and higher. (#327)
  • Loading branch information
bionade24 authored Sep 7, 2023
1 parent 3584bd6 commit 24daf9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lzokay/lzokay.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "lzokay.hpp"
#include <cstring>
#include <algorithm>
#include <iterator>

/*
* Based on documentation from the Linux sources: Documentation/lzo.txt
Expand Down Expand Up @@ -643,4 +644,4 @@ EResult compress(const uint8_t* src, std::size_t src_size,
return EResult::Success;
}

}
}

0 comments on commit 24daf9c

Please sign in to comment.