brintos

brintos / llvm-project-archived public Read only

0
0
Text · 952 B · c0b544f Raw
31 lines · c
1//===--- MockHeaders.h - Mock headers for dataflow analyses -*- C++ -----*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file defines mock headers for testing of dataflow analyses.10//11//===----------------------------------------------------------------------===//12 13#ifndef LLVM_CLANG_ANALYSIS_FLOW_SENSITIVE_MOCK_HEADERS_H_14#define LLVM_CLANG_ANALYSIS_FLOW_SENSITIVE_MOCK_HEADERS_H_15 16#include <string>17#include <utility>18#include <vector>19 20namespace clang {21namespace dataflow {22namespace test {23 24std::vector<std::pair<std::string, std::string>> getMockHeaders();25 26} // namespace test27} // namespace dataflow28} // namespace clang29 30#endif // LLVM_CLANG_ANALYSIS_FLOW_SENSITIVE_MOCK_HEADERS_H_31