]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxsum.C
tostr -> convert and some bformat work
[lyx.git] / src / support / lyxsum.C
index 6d6bbb5f029fe00b7668a12abb41b79a7141e7d7..3ce7994ebaed9c4e4210108f9486e56e8bffe069 100644 (file)
@@ -5,18 +5,22 @@
  *
  * \author Lars Gullik Bjønnes
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
 
 #include "support/lyxlib.h"
+
 #include "debug.h"
 
-#include <algorithm>
 #include <boost/crc.hpp>
 
+#include <algorithm>
+
 using std::endl;
+using std::string;
+
 
 // OK, this is ugly, but it is the only workaround I found to compile
 // with gcc (any version) on a system which uses a non-GNU toolchain.
@@ -79,7 +83,6 @@ unsigned long lyx::support::sum(string const & file)
 #include <fstream>
 #include <iterator>
 
-using std::for_each;
 
 namespace {
 
@@ -88,7 +91,7 @@ inline
 unsigned long do_crc(InputIterator first, InputIterator last)
 {
        boost::crc_32_type crc;
-       crc = for_each(first, last, crc);
+       crc = std::for_each(first, last, crc);
        return crc.checksum();
 }