citrun

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

commit 96b3256e3b87716288dad0b1167788250a906ca6
parent 39c653a15dde50be59745d0fede2efdfa1164b00
Author: Kyle Milz <kyle@0x30.net>
Date:   Sat, 17 Dec 2016 16:03:39 -0700

src: remove unused member variable

Diffstat:
Msrc/gl_procfile.cc | 3+--
Msrc/gl_procfile.h | 1-
2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/gl_procfile.cc b/src/gl_procfile.cc @@ -34,8 +34,7 @@ // GlProcessFile::GlProcessFile(std::string const &path, demo_font_t *font) : m_path(path), - m_fd(0), - m_tus_with_execs(0) + m_fd(0) { struct stat sb; void *mem, *end; diff --git a/src/gl_procfile.h b/src/gl_procfile.h @@ -15,7 +15,6 @@ class GlProcessFile std::string m_path; int m_fd; size_t m_size; - int m_tus_with_execs; GlBuffer m_glbuffer; public: