]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxsum.cpp
add FileName::renameTo() method.
[lyx.git] / src / support / lyxsum.cpp
index e191a32bb8dc116cada1da9edd477c3d9afb817e..a8ff0ec742ec9567adcbbfd44c41c67dd7bbeb48 100644 (file)
@@ -19,8 +19,7 @@
 #include <algorithm>
 #include <iomanip>
 
-using std::endl;
-using std::string;
+using namespace std;
 
 // 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.
@@ -92,7 +91,6 @@ unsigned long sum(char const * file)
 #include <fstream>
 #include <iterator>
 
-
 namespace {
 
 template<typename InputIterator>
@@ -100,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();
 }
 
@@ -110,11 +108,6 @@ unsigned long do_crc(InputIterator first, InputIterator last)
 namespace lyx {
 namespace support {
 
-using std::ifstream;
-using std::istreambuf_iterator;
-using std::istream_iterator;
-using std::ios;
-using std::ios_base;
 
 unsigned long sum(char const * file)
 {