Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:20

0001 //===--- NamespaceConstants.h -----------------------------------*- C++ -*-===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #include "llvm/ADT/StringRef.h"
0010 
0011 namespace clang::tidy::llvm_libc {
0012 
0013 const static llvm::StringRef RequiredNamespaceRefStart = "__llvm_libc";
0014 const static llvm::StringRef RequiredNamespaceRefMacroName = "LIBC_NAMESPACE";
0015 const static llvm::StringRef RequiredNamespaceDeclStart =
0016     "[[gnu::visibility(\"hidden\")]] __llvm_libc";
0017 const static llvm::StringRef RequiredNamespaceDeclMacroName =
0018     "LIBC_NAMESPACE_DECL";
0019 
0020 } // namespace clang::tidy::llvm_libc