What is the meaning if there is no value of return? Thanks
void run_algo() {
   ...
   project(tolabel->second);
   ...
}
void project(Projected &projected) {
    unsigned int sup = support(projected);
    if(sup < minsup) // minsup is a global variable
        return  ;
//-------------^--------->no expression here?    
    ...
}
 
     
     
     
     
     
     
     
    