This patch updates the clang-tidy checks for llvm-libc to ensure that the namespace macro used to declare the libc namespace is updated from LIBC_NAMESPACE to LIBC_NAMESPACE_DECL which by default has hidden visibility. Co-authored-by: Prabhu Rajesakeran <prabhukr@google.com>
21 lines
827 B
C++
21 lines
827 B
C++
//===--- NamespaceConstants.h -----------------------------------*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
namespace clang::tidy::llvm_libc {
|
|
|
|
const static llvm::StringRef RequiredNamespaceRefStart = "__llvm_libc";
|
|
const static llvm::StringRef RequiredNamespaceRefMacroName = "LIBC_NAMESPACE";
|
|
const static llvm::StringRef RequiredNamespaceDeclStart =
|
|
"[[gnu::visibility(\"hidden\")]] __llvm_libc";
|
|
const static llvm::StringRef RequiredNamespaceDeclMacroName =
|
|
"LIBC_NAMESPACE_DECL";
|
|
|
|
} // namespace clang::tidy::llvm_libc
|