From 016e82885ade71e8be70b83ba996348c3b6a3340 Mon Sep 17 00:00:00 2001 From: "A. R. Shajii" Date: Sat, 18 Feb 2023 23:35:21 -0500 Subject: [PATCH] clang-format --- codon/parser/cache.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/codon/parser/cache.cpp b/codon/parser/cache.cpp index dd48b505..e80474de 100644 --- a/codon/parser/cache.cpp +++ b/codon/parser/cache.cpp @@ -265,7 +265,8 @@ void Cache::populatePythonModule() { StmtPtr ret = nullptr; ExprPtr retType = N("cobj"); const int *p = nullptr; - LOG("[py] {}: {} => {} ({})", isMethod ? "method" : "classm", name, isMethod, rev(canonicalName)); + LOG("[py] {}: {} => {} ({})", isMethod ? "method" : "classm", name, isMethod, + rev(canonicalName)); if (isMethod && in(std::set{"__abs__", "__pos__", "__neg__", "__invert__", "__int__", "__float__", "__index__", "__repr__", "__str__"}, @@ -673,7 +674,8 @@ void Cache::populatePythonModule() { py.getset.push_back({mn, "", functions[gstub].realizations.begin()->second->ir, functions[sstub].realizations.begin()->second->ir}); - LOG("[py] {}: {}.{} => {}: {}, {}", "member", cn, mn, py.members.back().type, gstub, sstub); + LOG("[py] {}: {}.{} => {}: {}, {}", "member", cn, mn, py.members.back().type, + gstub, sstub); } pyModule->types.push_back(py); }