diff options
Diffstat (limited to 'plugins/Boltun/src/config.h')
-rw-r--r-- | plugins/Boltun/src/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Boltun/src/config.h b/plugins/Boltun/src/config.h index a51240ad70..a1cd72c7de 100644 --- a/plugins/Boltun/src/config.h +++ b/plugins/Boltun/src/config.h @@ -27,8 +27,8 @@ template <class T, class BaseClass> class Property
{
public:
- typedef const T (__thiscall BaseClass::*Getter)();
- typedef const T (__thiscall BaseClass::*Setter)(const T);
+ typedef const T(__thiscall BaseClass::*Getter)();
+ typedef const T(__thiscall BaseClass::*Setter)(const T);
private:
const Getter getter;
const Setter setter;
|