]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxsum.cpp
abdel likes short code
[lyx.git] / src / support / lyxsum.cpp
index 781ca7f5591b1d8cfb9f8385f9201a425dee270c..0f1549180251a14e6edff2dbdb6a1033eca6548f 100644 (file)
@@ -10,9 +10,7 @@
 
 #include <config.h>
 
-#include "support/lyxlib.h"
 #include "support/debug.h"
-#include "support/FileName.h"
 
 #include <boost/crc.hpp>
 
@@ -98,7 +96,7 @@ inline
 unsigned long do_crc(InputIterator first, InputIterator last)
 {
        boost::crc_32_type crc;
-       crc = std::for_each(first, last, crc);
+       crc = for_each(first, last, crc);
        return crc.checksum();
 }