mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.
Patch produced by
for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done
33 lines
932 B
C++
33 lines
932 B
C++
//===-- tapi/Defines.h - TAPI C++ Library Defines ---------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
///
|
|
/// \file
|
|
/// TAPI C++ library defines.
|
|
/// \since 1.0
|
|
///
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef TAPI_DEFINES_H
|
|
#define TAPI_DEFINES_H
|
|
|
|
#define TAPI_INTERNAL tapi::internal
|
|
#define TAPI_NAMESPACE_INTERNAL_BEGIN namespace tapi { namespace internal {
|
|
#define TAPI_NAMESPACE_INTERNAL_END } }
|
|
|
|
#define TAPI_NAMESPACE_V1_BEGIN namespace tapi { inline namespace v1 {
|
|
#define TAPI_NAMESPACE_V1_END } }
|
|
|
|
#if defined(_WIN32)
|
|
#define TAPI_PUBLIC
|
|
#else
|
|
#define TAPI_PUBLIC __attribute__((visibility ("default")))
|
|
#endif
|
|
|
|
#endif // TAPI_DEFINES_H
|
|
|