mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-13 07:06:10 +08:00
indentation and other formatting changes. also cleaned up
#includes.
This commit is contained in:
@@ -5,13 +5,14 @@
|
||||
//
|
||||
|
||||
CFunctionJob::CFunctionJob(void (*func)(void*), void* arg) :
|
||||
m_func(func),
|
||||
m_arg(arg)
|
||||
m_func(func),
|
||||
m_arg(arg)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void CFunctionJob::run()
|
||||
void
|
||||
CFunctionJob::run()
|
||||
{
|
||||
if (m_func != NULL) {
|
||||
m_func(m_arg);
|
||||
|
||||
Reference in New Issue
Block a user