Skip to content

Commit

Permalink
lint fix hack
Browse files Browse the repository at this point in the history
  • Loading branch information
areusch committed Feb 17, 2022
1 parent 24a7669 commit 512e3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/target/source/codegen_c.cc
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ void CodeGenC::PrintVecStore(const VarNode* buffer, DataType t, PrimExpr base,
}

std::string CodeGenC::CastFromTo(std::string value, DataType from, DataType target) {
// if (from == target) return value;
// if (from == target) return value;
std::ostringstream os;
os << "((";
this->PrintType(target, os);
Expand Down

0 comments on commit 512e3f4

Please sign in to comment.