1 #ifndef LLDB_UNITTESTS_GTEST_COMMON_H
2 
3 #define LLDB_UNITTESTS_GTEST_COMMON_H
4 
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-exception
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #if defined(LLDB_GTEST_COMMON_H)
14 #error "gtest_common.h should not be included manually."
15 #else
16 #define LLDB_GTEST_COMMON_H
17 #endif
18 
19 // This header file is force included by all of LLDB's unittest compilation
20 // units.  Be very leary about putting anything in this file.
21 
22 #endif
23