diff options
Diffstat (limited to 'Plugins/utils/mir_scope.h')
-rw-r--r-- | Plugins/utils/mir_scope.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugins/utils/mir_scope.h b/Plugins/utils/mir_scope.h index a18bf55..2f54044 100644 --- a/Plugins/utils/mir_scope.h +++ b/Plugins/utils/mir_scope.h @@ -7,7 +7,7 @@ class scope {
public:
scope(T t) : p(t) {}
- ~scope() { free(); }
+ ~scope() { mir_free(); }
void free()
{
|