Browse Source

Fixed comparison warning in botnet_comm_processor.cpp

Stefan Schmidt 5 years ago
parent
commit
8ebd777723
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code_boost/src/cxx/botnet_comm_processor.cpp

+ 1 - 1
code_boost/src/cxx/botnet_comm_processor.cpp

@@ -26,7 +26,7 @@ botnet_comm_processor::botnet_comm_processor(){
  */
 void botnet_comm_processor::set_messages(const py::list &messages_pyboost){
     messages.clear();
-    for (int i = 0; i < len(messages_pyboost); i++){
+    for (size_t i = 0; i < len(messages_pyboost); i++){
         py::dict msg_pyboost = py::cast<py::dict>(messages_pyboost[i]);
         unsigned int src_id = std::stoi(py::cast<std::string>(msg_pyboost["Src"]));
         unsigned int dst_id = std::stoi(py::cast<std::string>(msg_pyboost["Dst"]));