Skip to content

Commit

Permalink
Change code back to c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
alfred2g committed Apr 9, 2024
1 parent 6c117e1 commit 39adf37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion samples/secure_tunneling/tunnel_notification/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ int main(int argc, char *argv[])

while (1)
{
std::this_thread::sleep_for(500ms);
//std::this_thread::sleep_for(500ms);
std::this_thread::sleep_for(std::chrono::milliseconds(500));
continue;
}
}

0 comments on commit 39adf37

Please sign in to comment.