Bug 745291 - Remove superfluous ';' in X11Util.h; r=Yoric

This commit is contained in:
Ms2ger 2012-04-14 15:09:54 +02:00
Родитель 859ca74e56
Коммит c1f77cdb4b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -94,7 +94,7 @@ struct ScopedXFreePtrTraits
static T *empty() { return NULL; }
static void release(T *ptr) { if (ptr!=NULL) XFree(ptr); }
};
SCOPED_TEMPLATE(ScopedXFree, ScopedXFreePtrTraits);
SCOPED_TEMPLATE(ScopedXFree, ScopedXFreePtrTraits)
/**
* On construction, set a graceful X error handler that doesn't crash the application and records X errors.