diff options
| author | Douglas Gregor <dgregor@apple.com> | 2010-04-16 17:16:43 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2010-04-16 17:16:43 +0000 |
| commit | f149520464423e0f96d6d3bdd1796e6dbe6249e8 (patch) | |
| tree | a23f489a8b5dbbdf6c1a9cdf2f99263980b3123c /clang/lib/Sema/Sema.h | |
| parent | 3a7ee8eead8ac7640f3ffd805c78bd275799de28 (diff) | |
| download | bcm5719-llvm-f149520464423e0f96d6d3bdd1796e6dbe6249e8.tar.gz bcm5719-llvm-f149520464423e0f96d6d3bdd1796e6dbe6249e8.zip | |
Eliminate the Elidable parameter to PerformImplicitConversion; we
don't need it.
llvm-svn: 101481
Diffstat (limited to 'clang/lib/Sema/Sema.h')
| -rw-r--r-- | clang/lib/Sema/Sema.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 1be5f7af888..9c090398778 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -4109,12 +4109,10 @@ public: bool PerformImplicitConversion(Expr *&From, QualType ToType, AssignmentAction Action, - bool AllowExplicit = false, - bool Elidable = false); + bool AllowExplicit = false); bool PerformImplicitConversion(Expr *&From, QualType ToType, AssignmentAction Action, bool AllowExplicit, - bool Elidable, ImplicitConversionSequence& ICS); bool PerformImplicitConversion(Expr *&From, QualType ToType, const ImplicitConversionSequence& ICS, |

