summaryrefslogtreecommitdiff
path: root/simpleperf/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'simpleperf/utils.h')
-rw-r--r--simpleperf/utils.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/simpleperf/utils.h b/simpleperf/utils.h
index 10de9324..ec2303f0 100644
--- a/simpleperf/utils.h
+++ b/simpleperf/utils.h
@@ -198,8 +198,6 @@ static inline void HashCombine(size_t& seed, const T& val) {
seed ^= std::hash<T>()(val) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
-size_t SafeStrlen(const char* s, const char* end);
-
} // namespace simpleperf
#endif // SIMPLE_PERF_UTILS_H_