We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca43c3 commit a1aeb98Copy full SHA for a1aeb98
src/linux_parser.cpp
@@ -1,5 +1,6 @@
1
#include <dirent.h>
2
#include <unistd.h>
3
+#include <sstream>
4
#include <string>
5
#include <vector>
6
@@ -112,4 +113,4 @@ string LinuxParser::User(int pid[[maybe_unused]]) { return string(); }
112
113
114
// TODO: Read and return the uptime of a process
115
// REMOVE: [[maybe_unused]] once you define the function
-long LinuxParser::UpTime(int pid[[maybe_unused]]) { return 0; }
116
+long LinuxParser::UpTime(int pid[[maybe_unused]]) { return 0; }
0 commit comments