@@ -152,7 +152,7 @@ bool Converter::VisitRecordType(clang::RecordType *type) {
152152}
153153
154154std::string Converter::ConvertPointer (clang::Expr *expr, int line) {
155- log () << " ConvertPointer called from line " << line << " \n " ;
155+ log () << " ConvertPointer called from line " << line << ' \n ' ;
156156 PushExprKind push (*this , ExprKind::AddrOf);
157157 return ToString (expr);
158158}
@@ -176,7 +176,7 @@ std::string Converter::ConvertLValue(clang::Expr *expr) {
176176}
177177
178178std::string Converter::ConvertRValue (clang::Expr *expr, int line) {
179- log () << " ConvertRValue called from line " << line << " \n " ;
179+ log () << " ConvertRValue called from line " << line << ' \n ' ;
180180 PushExprKind push (*this , ExprKind::RValue);
181181 return ToString (expr);
182182}
@@ -1086,7 +1086,7 @@ bool Converter::VisitCXXForRangeStmt(clang::CXXForRangeStmt *stmt) {
10861086 log () << " for range stmts only for types in std namespace\n " ;
10871087 }
10881088
1089- log () << " GetClassName: " << GetClassName (range_init_type) << " \n " ;
1089+ log () << " GetClassName: " << GetClassName (range_init_type) << ' \n ' ;
10901090
10911091 if (GetClassName (range_init_type) == " std::map" ) {
10921092 return VisitCXXForRangeStmtMap (stmt);
@@ -3582,7 +3582,7 @@ void Converter::ConvertDeref(clang::Expr *expr) {
35823582void Converter::ConvertArrow (clang::Expr *expr) { ConvertDeref (expr); }
35833583
35843584void Converter::ConvertCast (clang::QualType qual_type, int line) {
3585- log () << " [ConvertCast] Called from line " << line << " \n " ;
3585+ log () << " [ConvertCast] Called from line " << line << ' \n ' ;
35863586 StrCat (keyword::kAs , GetUnsafeTypeAsString (qual_type));
35873587}
35883588
@@ -3633,7 +3633,7 @@ void Converter::PlaceholderCtx::dump() const {
36333633 << declared_in_rule_as_rust_ptr << " , access: "
36343634 << (access == TranslationRule::Access::kRead ? " read" : " write" )
36353635 << " , param_type: " << param_type
3636- << " , materialize_idx: " << materialize_idx << " \n " ;
3636+ << " , materialize_idx: " << materialize_idx << ' \n ' ;
36373637}
36383638
36393639std::string Converter::ConvertPlaceholder (clang::Expr *expr, clang::Expr *arg,
@@ -3844,7 +3844,7 @@ void Converter::SetFreshType(clang::QualType type) {
38443844void Converter::dump_expr_kinds () {
38453845 log () << " isRValue: " << isRValue () << " , isXValue: " << isXValue ()
38463846 << " , isAddrOf: " << isAddrOf () << " , isObject: " << isObject ()
3847- << " , isVoid: " << isVoid () << " \n " ;
3847+ << " , isVoid: " << isVoid () << ' \n ' ;
38483848}
38493849
38503850void Converter::emplace_back_plugin_construct_arg (
0 commit comments