Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx authored and ronaldtse committed Apr 19, 2023
1 parent 6439815 commit 8d72207
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/sexp-input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void sexp_input_stream_t::scan_token(sexp_simple_string_t &ss)
*/
std::shared_ptr<sexp_object_t> sexp_input_stream_t::scan_to_eof(void)
{
sexp_simple_string_t ss;
sexp_simple_string_t ss;
skip_white_space();
while (next_char != EOF) {
ss.append(next_char);
Expand Down Expand Up @@ -467,7 +467,8 @@ sexp_simple_string_t sexp_input_stream_t::scan_simple_string(void)
*/
std::shared_ptr<sexp_string_t> sexp_input_stream_t::scan_string(void)
{
auto s = std::make_shared<sexp_string_t>();;
auto s = std::make_shared<sexp_string_t>();
;
s->parse(this);
return s;
}
Expand Down

0 comments on commit 8d72207

Please sign in to comment.