Skip to content

Commit

Permalink
reverted last change
Browse files Browse the repository at this point in the history
  • Loading branch information
kuashio committed Dec 1, 2022
1 parent 6d9bf68 commit 05a7b06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/08/Solution/ch8_ip_address.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ bool is_number(const std::string &str){
// Returns: A vector of strings containing the tokens.
std::vector<std::string> get_tokens(const std::string &str){
size_t i = 0;
size_t dot = -1;
int dot = -1;
std::vector<std::string> tokens;

do{
Expand Down

0 comments on commit 05a7b06

Please sign in to comment.