citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 95f41c6fb3cb361ecdff79b32ef9175988889e90
parent 5f360b484950847f359b0b509e87ee9cd075bf69
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue, 23 Aug 2016 22:59:22 -0600

src: remove unused constructor

Diffstat:
Msrc/process_dir.cc | 5-----
Msrc/process_dir.h | 1-
2 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/src/process_dir.cc b/src/process_dir.cc @@ -16,11 +16,6 @@ ProcessDir::ProcessDir() err(1, "opendir"); } -ProcessDir::~ProcessDir() -{ - closedir(m_dirp); -} - void ProcessDir::scan() { diff --git a/src/process_dir.h b/src/process_dir.h @@ -9,7 +9,6 @@ class ProcessDir { public: ProcessDir(); - ~ProcessDir(); void scan(); std::vector<ProcessFile> m_procfiles;