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
e1ecd61b98
llvm-project
/
clang
/
test
/
PCH
/
Inputs
/
cxx-method.h
10 lines
101 B
C
Raw
Normal View
History
Unescape
Escape
When writing out the entries in a lookup table for a DeclContext, make sure that all of the CXXConversionDecls go into the same bucket. Otherwise, name lookup might not find them all. Fixes <rdar://problem/10041960>. llvm-svn: 138824
2011-08-31 04:49:19 +08:00
struct
S
{
void
m
(
int
x
)
;
Store on the CXXRecordDecl whether the class has, or would have, a copy constructor/assignment operator with a const-qualified parameter type. The prior method for determining this incorrectly used overload resolution. llvm-svn: 168775
2012-11-28 14:23:12 +08:00
S
(
)
;
S
(
const
S
&
)
;
When writing out the entries in a lookup table for a DeclContext, make sure that all of the CXXConversionDecls go into the same bucket. Otherwise, name lookup might not find them all. Fixes <rdar://problem/10041960>. llvm-svn: 138824
2011-08-31 04:49:19 +08:00
operator
const
char
*
(
)
;
operator
char
*
(
)
;
}
;