- Sep 16, 2009
-
-
Douglas Gregor authored
give them the appropriate exception specifications. This, unfortunately, requires us to maintain and/or implicitly generate handles to namespace "std" and the class "std::bad_alloc". However, every other approach I've come up with was more hackish, and this standard requirement itself is quite the hack. Fixes PR4829. llvm-svn: 81939
-
Fariborz Jahanian authored
to pointer function for delete expression. 2) Treat type conversion function and its 'const' version as identical in building the visible conversion list. llvm-svn: 81930
-
- Sep 15, 2009
-
-
Anders Carlsson authored
llvm-svn: 81917
-
Douglas Gregor authored
point at the template and print out its template arguments, e.g., ambiguous-ovl-print.cpp:5:8: note: candidate function template specialization [with T = int] void f(T*, long); llvm-svn: 81907
-
Fariborz Jahanian authored
ambiguity in type conversion function selection. llvm-svn: 81898
-
Douglas Gregor authored
llvm-svn: 81885
-
Fariborz Jahanian authored
function for delete of a class expression and issue good diagnostic when result is ambiguous. llvm-svn: 81870
-
Douglas Gregor authored
ordering, along with another test case for partial ordering of partial specializations. llvm-svn: 81869
-
Douglas Gregor authored
(C++ [temp.class.order]). llvm-svn: 81866
-
Anders Carlsson authored
llvm-svn: 81863
-
Anders Carlsson authored
llvm-svn: 81852
-
Anders Carlsson authored
When performing an user defined conversion sequence, perform the initial standard conversion sequence. This lets us remove a workaround in SemaCompleteConstructorCall. llvm-svn: 81847
-
Anders Carlsson authored
llvm-svn: 81844
-
Anders Carlsson authored
llvm-svn: 81842
-
Anders Carlsson authored
llvm-svn: 81841
-
Anders Carlsson authored
llvm-svn: 81839
-
Anders Carlsson authored
llvm-svn: 81837
-
Fariborz Jahanian authored
a type convesion function results in ambiguity. llvm-svn: 81812
-
Anders Carlsson authored
llvm-svn: 81808
-
Douglas Gregor authored
conversion function. llvm-svn: 81807
-
Douglas Gregor authored
an overloaded function (template). llvm-svn: 81804
-
- Sep 14, 2009
-
-
John McCall authored
llvm-svn: 81801
-
Douglas Gregor authored
MarkUsedTemplateParameters, which is able to mark template parameters used within non-deduced contexts as well as deduced contexts. Use this to finish the implementation of [temp.deduct.partial]p11. llvm-svn: 81794
-
Fariborz Jahanian authored
resolution of type conversion functions in base and current class. llvm-svn: 81784
-
Sam Weinig authored
-Wchar-subscripts should not warn for explicit signed char subscripts either. Another fix for PR4978. llvm-svn: 81780
-
Douglas Gregor authored
argument deduction. This fixes the new test case (since partial ordering does not have a "verify the results of deduction" step), and will allow failed template argument deductions to return more quickly for, e.g., matching class template partial specializations. llvm-svn: 81779
-
Douglas Gregor authored
(C++ [temp.func.order]). llvm-svn: 81777
-
Sam Weinig authored
llvm-svn: 81776
-
Sam Weinig authored
llvm-svn: 81747
-
Anders Carlsson authored
llvm-svn: 81743
-
- Sep 13, 2009
-
-
Anders Carlsson authored
Perform the C++ specific semantic checks of a function declaration after it's been merged with the previous declaration. This ensures that getPreviousDecl() will have the right value when ActOnConversionDeclarator is called. llvm-svn: 81720
-
Douglas Gregor authored
generated for an inline function definition, taking into account C99 and GNU inline/extern inline semantics. This solution is simpler, cleaner, and fixes PR4536. llvm-svn: 81670
-
- Sep 12, 2009
-
-
Fariborz Jahanian authored
need them. llvm-svn: 81621
-
Fariborz Jahanian authored
conversion functions. llvm-svn: 81618
-
Anders Carlsson authored
llvm-svn: 81608
-
Douglas Gregor authored
llvm-svn: 81590
-
Douglas Gregor authored
llvm-svn: 81589
-
Douglas Gregor authored
partial specialization, make sure we look into non-dependent base classes (but not dependent base classes). Fixes PR4951. llvm-svn: 81584
-
- Sep 11, 2009
-
-
Fariborz Jahanian authored
first use in calling the conversion function on delete statements. llvm-svn: 81576
-
Douglas Gregor authored
instantiation definition can follow an explicit instantiation declaration. This is as far as I want to go with extern templates now, but they will still need quite a bit more work to get all of the C++0x semantics right. llvm-svn: 81573
-