mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
12 lines
231 B
C++
12 lines
231 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
namespace codeql {
|
|
|
|
void initRemapping(const std::string& dir);
|
|
void finalizeRemapping(const std::unordered_map<std::string, std::string>& mapping);
|
|
|
|
} // namespace codeql
|