Skip to content

Commit 7e3df93

Browse files
authored
Merge pull request #409 from sonofmom/bugfix/silence_vm_stack
Silence errant debug stderr output
2 parents 09236fb + f599f08 commit 7e3df93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/vm/stack.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ class Stack : public td::CntObject {
320320
Stack(const Stack& old_stack, unsigned copy_elem, unsigned skip_top);
321321
Stack(Stack&& old_stack, unsigned copy_elem, unsigned skip_top);
322322
td::CntObject* make_copy() const override {
323-
std::cerr << "copy stack at " << (const void*)this << " (" << depth() << " entries)\n";
323+
//std::cerr << "copy stack at " << (const void*)this << " (" << depth() << " entries)\n";
324324
return new Stack{stack};
325325
}
326326
void push_from_stack(const Stack& old_stack, unsigned copy_elem, unsigned skip_top = 0);

0 commit comments

Comments
 (0)