Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Jan 29, 2024
1 parent c7b7253 commit 0508365
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions crypto/tl/tlblib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ bool PrettyPrinter::field_int(long long x) {

bool PrettyPrinter::field_uint(unsigned long long x, std::string name) {
LOG(ERROR) << "Field: " << name << " x: " << x;
os << 321;
os << ' ' << name << ':' << x;
return true;
}
Expand Down
1 change: 1 addition & 0 deletions tvm-python/PyCell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ std::string PyCell::dump_as_tlb(std::string tlb_type) const {
}

std::ostringstream ss;
ss << 321;
_template->print_ref(9 << 20, ss, my_cell);

auto output = ss.str();
Expand Down

0 comments on commit 0508365

Please sign in to comment.