summaryrefslogtreecommitdiff
path: root/src/Util.hpp
diff options
context:
space:
mode:
authorJoel Rosdahl <joel@rosdahl.net>2021-07-04 06:59:07 +0200
committerJoel Rosdahl <joel@rosdahl.net>2021-07-04 12:12:10 +0200
commitc3559353525c1ed5b368a49220ed10a731b7eeba (patch)
tree626e2a431b135fa68a546af2435bbc2262235314 /src/Util.hpp
parent55af5e082de11f4bae029912f234171da7ed560a (diff)
downloadccache-c3559353525c1ed5b368a49220ed10a731b7eeba.tar.gz
Move is_absolute_path to util
Diffstat (limited to 'src/Util.hpp')
-rw-r--r--src/Util.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Util.hpp b/src/Util.hpp
index e7ca4600..6e3ed4a4 100644
--- a/src/Util.hpp
+++ b/src/Util.hpp
@@ -265,9 +265,6 @@ int_to_big_endian(int8_t value, uint8_t* buffer)
buffer[0] = value;
}
-// Return whether `path` is absolute.
-bool is_absolute_path(nonstd::string_view path);
-
// Test if a file is on nfs.
//
// Sets is_nfs to the result if fstatfs is available and no error occurred.