brintos

brintos / llvm-project-archived public Read only

0
0
Text · 726 B · 3a92123 Raw
23 lines · c
1#ifndef LLDB_UNITTESTS_GTEST_COMMON_H2 3#define LLDB_UNITTESTS_GTEST_COMMON_H4 5//===-- gtest_common.h ------------------------------------------*- C++ -*-===//6//7// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.8// See https://llvm.org/LICENSE.txt for license information.9// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception10//11//===----------------------------------------------------------------------===//12 13#if defined(LLDB_GTEST_COMMON_H)14#error "gtest_common.h should not be included manually."15#else16#define LLDB_GTEST_COMMON_H17#endif18 19// This header file is force included by all of LLDB's unittest compilation20// units.  Be very leary about putting anything in this file.21 22#endif23