mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 14:31:24 +12:00
remove unexplained commented out code that I added myself with the last PR
* remove unexplained commented out code that I added myself * revert asmjit settings change that was meant to only be local for me
This commit is contained in:
parent
bd6837f2f9
commit
e85abdeb2c
16 changed files with 5 additions and 215 deletions
|
@ -5,11 +5,6 @@ rSemaphore::rSemaphore()
|
|||
handle = reinterpret_cast<void*>(new wxSemaphore());
|
||||
}
|
||||
|
||||
//rSemaphore::rSemaphore(rSemaphore& other)
|
||||
//{
|
||||
// handle = reinterpret_cast<void*>(new wxSemaphore(*reinterpret_cast<wxSemaphore*>(other.handle)));
|
||||
//}
|
||||
|
||||
rSemaphore::~rSemaphore()
|
||||
{
|
||||
delete reinterpret_cast<wxSemaphore*>(handle);
|
||||
|
@ -53,11 +48,6 @@ rCriticalSection::rCriticalSection()
|
|||
handle = reinterpret_cast<void*>(new wxCriticalSection());
|
||||
}
|
||||
|
||||
//rCriticalSection::rCriticalSection(rCriticalSection&)
|
||||
//{
|
||||
// handle = reinterpret_cast<void*>(new wxCriticalSection(*reinterpret_cast<wxCriticalSection*>(other.handle)));
|
||||
//}
|
||||
|
||||
rCriticalSection::~rCriticalSection()
|
||||
{
|
||||
delete reinterpret_cast<wxCriticalSection*>(handle);
|
||||
|
@ -78,11 +68,6 @@ rTimer::rTimer()
|
|||
handle = reinterpret_cast<void*>(new wxTimer());
|
||||
}
|
||||
|
||||
//rTimer::rTimer(rTimer&)
|
||||
//{
|
||||
// handle = reinterpret_cast<void*>(new wxTimer(*reinterpret_cast<wxTimer*>(other.handle)));
|
||||
//}
|
||||
|
||||
rTimer::~rTimer()
|
||||
{
|
||||
delete reinterpret_cast<wxTimer*>(handle);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue