From 0f186e688f1955e82e552c03fe43529cfe86c765 Mon Sep 17 00:00:00 2001 From: castano Date: Thu, 8 May 2008 21:15:05 +0000 Subject: [PATCH] Remove 'virtual' from non virtual methods. --- src/nvtt/tools/compress.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nvtt/tools/compress.cpp b/src/nvtt/tools/compress.cpp index 0d091c8..f7baf3e 100644 --- a/src/nvtt/tools/compress.cpp +++ b/src/nvtt/tools/compress.cpp @@ -42,11 +42,11 @@ struct MyOutputHandler : public nvtt::OutputHandler MyOutputHandler(const char * name) : total(0), progress(0), percentage(0), stream(new nv::StdOutputStream(name)) {} virtual ~MyOutputHandler() { delete stream; } - virtual void setTotal(int64 t) + void setTotal(int64 t) { total = t + 128; } - virtual void setDisplayProgress(bool b) + void setDisplayProgress(bool b) { verbose = b; }