diff options
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r-- | include/llvm/ADT/Twine.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/ADT/Twine.h b/include/llvm/ADT/Twine.h index 3022812..6c4905e 100644 --- a/include/llvm/ADT/Twine.h +++ b/include/llvm/ADT/Twine.h @@ -252,22 +252,22 @@ namespace llvm { } /// Construct a twine to print \arg Val as an unsigned decimal integer. - Twine(const uint32_t &Val) + explicit Twine(const uint32_t &Val) : LHS(&Val), LHSKind(UDec32Kind), RHSKind(EmptyKind) { } /// Construct a twine to print \arg Val as a signed decimal integer. - Twine(const int32_t &Val) + explicit Twine(const int32_t &Val) : LHS(&Val), LHSKind(SDec32Kind), RHSKind(EmptyKind) { } /// Construct a twine to print \arg Val as an unsigned decimal integer. - Twine(const uint64_t &Val) + explicit Twine(const uint64_t &Val) : LHS(&Val), LHSKind(UDec64Kind), RHSKind(EmptyKind) { } /// Construct a twine to print \arg Val as a signed decimal integer. - Twine(const int64_t &Val) + explicit Twine(const int64_t &Val) : LHS(&Val), LHSKind(SDec64Kind), RHSKind(EmptyKind) { } |