]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxsum.cpp
add FileName::renameTo() method.
[lyx.git] / src / support / lyxsum.cpp
index 781ca7f5591b1d8cfb9f8385f9201a425dee270c..a8ff0ec742ec9567adcbbfd44c41c67dd7bbeb48 100644 (file)
@@ -98,7 +98,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();
 }