Remove 'virtual' from non virtual methods.
This commit is contained in:
parent
38e9652d64
commit
0f186e688f
@ -42,11 +42,11 @@ struct MyOutputHandler : public nvtt::OutputHandler
|
|||||||
MyOutputHandler(const char * name) : total(0), progress(0), percentage(0), stream(new nv::StdOutputStream(name)) {}
|
MyOutputHandler(const char * name) : total(0), progress(0), percentage(0), stream(new nv::StdOutputStream(name)) {}
|
||||||
virtual ~MyOutputHandler() { delete stream; }
|
virtual ~MyOutputHandler() { delete stream; }
|
||||||
|
|
||||||
virtual void setTotal(int64 t)
|
void setTotal(int64 t)
|
||||||
{
|
{
|
||||||
total = t + 128;
|
total = t + 128;
|
||||||
}
|
}
|
||||||
virtual void setDisplayProgress(bool b)
|
void setDisplayProgress(bool b)
|
||||||
{
|
{
|
||||||
verbose = b;
|
verbose = b;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user