mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
211 B
C++
12 lines
211 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
|
|
namespace codeql {
|
|
struct PathHash {
|
|
auto operator()(const std::filesystem::path& path) const {
|
|
return std::filesystem::hash_value(path);
|
|
}
|
|
};
|
|
} // namespace codeql
|