diff options
Diffstat (limited to 'src/libstore/download.cc')
-rw-r--r-- | src/libstore/download.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libstore/download.cc b/src/libstore/download.cc index 54f4dd218..1076a6d94 100644 --- a/src/libstore/download.cc +++ b/src/libstore/download.cc @@ -29,13 +29,6 @@ using namespace std::string_literals; namespace nix { -double getTime() -{ - struct timeval tv; - gettimeofday(&tv, 0); - return tv.tv_sec + (tv.tv_usec / 1000000.0); -} - std::string resolveUri(const std::string & uri) { if (uri.compare(0, 8, "channel:") == 0) |