From 600cdcb2793a9f9442843d76f0ec20a3e60287a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 26 Mar 2016 00:50:15 -0700 Subject: [PATCH] Cleanup. --- include/bx/crtimpl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/bx/crtimpl.h b/include/bx/crtimpl.h index 83ce999..c52d1a1 100644 --- a/include/bx/crtimpl.h +++ b/include/bx/crtimpl.h @@ -212,7 +212,7 @@ namespace bx BX_CHECK(NULL == m_file, "Process not closed!"); } - bool open(const char* _command, Error* _err) BX_OVERRIDE + virtual bool open(const char* _command, Error* _err) BX_OVERRIDE { BX_CHECK(NULL != _err, "Reader/Writer interface calling functions must handle errors."); @@ -226,7 +226,7 @@ namespace bx return true; } - void close() BX_OVERRIDE + virtual void close() BX_OVERRIDE { BX_CHECK(NULL != m_file, "Process not open!"); pclose(m_file); @@ -263,7 +263,7 @@ namespace bx BX_CHECK(NULL == m_file, "Process not closed!"); } - bool open(const char* _command, bool, Error* _err) BX_OVERRIDE + virtual bool open(const char* _command, bool, Error* _err) BX_OVERRIDE { BX_CHECK(NULL != _err, "Reader/Writer interface calling functions must handle errors."); @@ -277,7 +277,7 @@ namespace bx return true; } - void close() BX_OVERRIDE + virtual void close() BX_OVERRIDE { BX_CHECK(NULL != m_file, "Process not open!"); pclose(m_file);