mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02: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
|