mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Add some thread classes and fix SharedData with a simple mutex adapter
This commit is contained in:
@@ -53,7 +53,7 @@ public:
|
||||
|
||||
R operator() ()
|
||||
{
|
||||
return m_f ();
|
||||
return (m_f)();
|
||||
}
|
||||
|
||||
private:
|
||||
@@ -136,7 +136,7 @@ public:
|
||||
|
||||
R operator() (P1 p1)
|
||||
{
|
||||
return m_f (p1);
|
||||
return (m_f)(p1);
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user