Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
guptaprakhariitr committed May 4, 2021
1 parent e65096a commit 6a7eb9f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ using namespace std;

void roosh_loop(std::istream &in)
{
// Perform REPL(read, write, execute, loop) loop.
string line;
print_input_format();

Expand Down Expand Up @@ -38,7 +39,8 @@ void roosh_loop(std::istream &in)
exit(EXIT_SUCCESS);
}

// deallocating memory
// deallocating memory.
// perform any shutdown cleanup.
for (int i = 0; i < num_args; i++)
{
delete[] args[i];
Expand Down

0 comments on commit 6a7eb9f

Please sign in to comment.