This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
c8cd29fb7e
llvm-project
/
clang
/
test
/
PCH
/
cxx-namespaces.h
11 lines
128 B
C
Raw
Normal View
History
Unescape
Escape
When setting the anonymous namespace at PCH reading, it may still be initializing so avoid the invariant checks at NamespaceDecl::setAnonymousNamespace(). llvm-svn: 107566
2010-07-03 15:57:53 +08:00
// Header for PCH test cxx-namespaces.cpp
namespace
N
{
namespace
{
int
x
;
}
When setting the external visible declarations for a decl context, check whether they replace any existing lookups in the context, rather than accumulating a bunch of lookup results referring to the same entity. llvm-svn: 184679
2013-06-24 09:46:41 +08:00
void
f
(
)
;
void
f
(
int
)
;
When setting the anonymous namespace at PCH reading, it may still be initializing so avoid the invariant checks at NamespaceDecl::setAnonymousNamespace(). llvm-svn: 107566
2010-07-03 15:57:53 +08:00
}