| File | Lines added | Lines deleted | 
|---|---|---|
| src/BuildHistory.cpp | 1 | 1 | 
| src/Repository.cpp | 1 | 1 | 
| src/sub_commands.cpp | 1 | 1 | 
| src/utils/md5.cpp | 1 | 1 | 
| src/utils/md5.hpp | 3 | 3 | 
| File src/BuildHistory.cpp changed (mode: 100644) (index 704d68e..2097bea) | |||
| 28 | 28 | #include <vector> | #include <vector> | 
| 29 | 29 | #include <map> | #include <map> | 
| 30 | 30 | ||
| 31 | #include "utils/md5.hpp" | ||
| 31 | 32 | #include "DB.hpp" | #include "DB.hpp" | 
| 32 | #include "md5.hpp" | ||
| 33 | 33 | ||
| 34 | 34 | static std::string hashCoverage(const std::vector<int> &vec); | static std::string hashCoverage(const std::vector<int> &vec); | 
| 35 | 35 | static void updateDBSchema(DB &db, int fromVersion); | static void updateDBSchema(DB &db, int fromVersion); | 
| File src/Repository.cpp changed (mode: 100644) (index eb15acf..b99e454) | |||
| 28 | 28 | #include <utility> | #include <utility> | 
| 29 | 29 | #include <vector> | #include <vector> | 
| 30 | 30 | ||
| 31 | #include "md5.hpp" | ||
| 31 | #include "utils/md5.hpp" | ||
| 32 | 32 | ||
| 33 | 33 | template <typename T> | template <typename T> | 
| 34 | 34 | class Repository::GitObjPtr | class Repository::GitObjPtr | 
| File src/sub_commands.cpp changed (mode: 100644) (index 4eaf810..ebf46af) | |||
| 36 | 36 | ||
| 37 | 37 | #include "utils/Text.hpp" | #include "utils/Text.hpp" | 
| 38 | 38 | #include "utils/fs.hpp" | #include "utils/fs.hpp" | 
| 39 | #include "utils/md5.hpp" | ||
| 39 | 40 | #include "BuildHistory.hpp" | #include "BuildHistory.hpp" | 
| 40 | 41 | #include "FileComparator.hpp" | #include "FileComparator.hpp" | 
| 41 | 42 | #include "FilePrinter.hpp" | #include "FilePrinter.hpp" | 
| 46 | 47 | #include "coverage.hpp" | #include "coverage.hpp" | 
| 47 | 48 | #include "integration.hpp" | #include "integration.hpp" | 
| 48 | 49 | #include "listings.hpp" | #include "listings.hpp" | 
| 49 | #include "md5.hpp" | ||
| 50 | 50 | ||
| 51 | 51 | namespace { | namespace { | 
| 52 | 52 | ||
| File src/utils/md5.cpp renamed from src/md5.cpp (similarity 99%) (mode: 100644) (index faab5ca..770bdc5) | |||
| 44 | 44 | // These notices must be retained in any copies of any part of this | // These notices must be retained in any copies of any part of this | 
| 45 | 45 | // documentation and/or software. | // documentation and/or software. | 
| 46 | 46 | ||
| 47 | #include "md5.hpp" | ||
| 47 | #include "utils/md5.hpp" | ||
| 48 | 48 | ||
| 49 | 49 | #include <cstdint> | #include <cstdint> | 
| 50 | 50 | #include <cstring> | #include <cstring> | 
| File src/utils/md5.hpp renamed from src/md5.hpp (similarity 89%) (mode: 100644) (index 4bf03ef..f689d70) | |||
| 15 | 15 | // You should have received a copy of the GNU Affero General Public License | // You should have received a copy of the GNU Affero General Public License | 
| 16 | 16 | // along with uncov. If not, see <http://www.gnu.org/licenses/>. | // along with uncov. If not, see <http://www.gnu.org/licenses/>. | 
| 17 | 17 | ||
| 18 | #ifndef UNCOV__MD5_HPP__ | ||
| 19 | #define UNCOV__MD5_HPP__ | ||
| 18 | #ifndef UNCOV__UTILS__MD5_HPP__ | ||
| 19 | #define UNCOV__UTILS__MD5_HPP__ | ||
| 20 | 20 | ||
| 21 | 21 | #include <string> | #include <string> | 
| 22 | 22 | ||
| 23 | 23 | std::string md5(const std::string &str); | std::string md5(const std::string &str); | 
| 24 | 24 | ||
| 25 | #endif // UNCOV__MD5_HPP__ | ||
| 25 | #endif // UNCOV__UTILS__MD5_HPP__ | ||