We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9785049 commit 4ce4b18Copy full SHA for 4ce4b18
crc32.cpp
@@ -2,6 +2,8 @@
2
3
#include <Eigen/Dense>
4
5
+// https://stackoverflow.com/questions/2573726/how-to-use-boostcrc
6
+// https://stackoverflow.com/questions/5100718/integer-to-hex-string-in-c
7
std::string getCrc32(const std::string& str) {
8
boost::crc_32_type result;
9
result.process_bytes(str.data(), str.length());
0 commit comments