diff options
Diffstat (limited to 'clang/lib/Sema/Sema.h')
-rw-r--r-- | clang/lib/Sema/Sema.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/Sema/Sema.h b/clang/lib/Sema/Sema.h index 60220834dba..b234d56fa01 100644 --- a/clang/lib/Sema/Sema.h +++ b/clang/lib/Sema/Sema.h @@ -766,7 +766,8 @@ public: bool SuppressUserConversions, bool AllowExplicit, bool ForceRValue, - bool InOverloadResolution); + bool InOverloadResolution, + bool UserCast = false); bool IsStandardConversion(Expr *From, QualType ToType, bool InOverloadResolution, StandardConversionSequence& SCS); @@ -790,7 +791,8 @@ public: UserDefinedConversionSequence& User, OverloadCandidateSet& Conversions, bool AllowConversionFunctions, - bool AllowExplicit, bool ForceRValue); + bool AllowExplicit, bool ForceRValue, + bool UserCast = false); bool DiagnoseAmbiguousUserDefinedConversion(Expr *From, QualType ToType); |