//===--- SanitizerArgs.h - Arguments for sanitizer tools -------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_DRIVER_SANITIZERARGS_H #define LLVM_CLANG_DRIVER_SANITIZERARGS_H #include "clang/Basic/Sanitizers.h" #include "clang/Driver/Types.h" #include "llvm/Option/Arg.h" #include "llvm/Option/ArgList.h" #include "llvm/Transforms/Instrumentation/AddressSanitizerOptions.h" #include <string> #include <vector> namespace clang { namespace driver { class ToolChain; class SanitizerArgs { … }; } // namespace driver } // namespace clang #endif