Add a blank line to the end of is_positive_num()

The return statement is too close to the block above it, so I want to
space it out for aesthetics.
This commit is contained in:
Misa
2021-02-11 16:47:40 -08:00
committed by Ethan Lee
parent 30b0fc828f
commit 4a853fec97

View File

@@ -313,6 +313,7 @@ bool is_positive_num(const char* str, const bool hex)
}
}
}
return true;
}