mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2025-01-08 06:25:31 +00:00
Make sure to return a value for the = operator...
This commit is contained in:
parent
113749c82f
commit
562d9e905d
|
@ -50,6 +50,7 @@ StopWatch &StopWatch::operator=(const StopWatch &other) {
|
|||
}
|
||||
impl = new StopWatchImpl();
|
||||
memcpy(impl, other.impl, sizeof(StopWatchImpl));
|
||||
return *this;
|
||||
}
|
||||
|
||||
StopWatch::~StopWatch() {
|
||||
|
|
Loading…
Reference in a new issue