// Copyright 2022 The V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_GOOGLE_BENCHMARK_PRECOMPILED_HEADERS_BENCHMARK_EXPORT_H #define THIRD_PARTY_GOOGLE_BENCHMARK_PRECOMPILED_HEADERS_BENCHMARK_EXPORT_H // This is a precompiled header as export.h is usually generated by the // libraries build system. #ifndef BENCHMARK_EXPORT #define BENCHMARK_EXPORT #endif #ifndef BENCHMARK_NO_EXPORT #define BENCHMARK_NO_EXPORT #endif #ifndef BENCHMARK_DEPRECATED #define BENCHMARK_DEPRECATED __attribute__((__deprecated__)) #endif #ifndef BENCHMARK_DEPRECATED_EXPORT #define BENCHMARK_DEPRECATED_EXPORT BENCHMARK_EXPORT BENCHMARK_DEPRECATED #endif #ifndef BENCHMARK_DEPRECATED_NO_EXPORT #define BENCHMARK_DEPRECATED_NO_EXPORT BENCHMARK_NO_EXPORT BENCHMARK_DEPRECATED #endif #endif // THIRD_PARTY_GOOGLE_BENCHMARK_PRECOMPILED_HEADERS_BENCHMARK_EXPORT_H