TanmayPatil105 / procfetch

🎨 Yet another command-line system information utility written in C++
https://tanmaypatil105.github.io/procfetch/
GNU General Public License v3.0
23 stars 11 forks source link

Fix Command::exec() #162

Closed youpong closed 3 months ago

youpong commented 3 months ago

Issue #156 was resolved in pull request #157. The solution was to explicitly delete the new Command object in the exec() member function.

It would be better designed to modify the exec() member function so that it does not require explicit deletion. That is what I am implementing in this pull request.

TanmayPatil105 commented 3 months ago

This is better!