Skip to content

Commit 575b43a

Browse files
committed
Check CI return
1 parent 5f4253f commit 575b43a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pydatastructs/trees/_backend/cpp/BinarySearchTree.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#include <Python.h>
66
#include <structmember.h>
77
#include <cstdlib>
8+
#include <iostream>
89
#include <stack>
910
#include "../../../utils/_backend/cpp/utils.hpp"
1011
#include "../../../utils/_backend/cpp/TreeNode.hpp"
@@ -219,6 +220,7 @@ static PyObject* BinarySearchTree_delete(BinarySearchTree* self, PyObject *args,
219220
Py_INCREF(Py_None);
220221
PyObject* a = Py_None;
221222
if (walk == Py_None) {
223+
std::cout<<"CI returns this"<<std::endl;
222224
Py_RETURN_NONE;
223225
}
224226
BinaryTree* bt = self->binary_tree;

0 commit comments

Comments
 (0)