Deleted all trailing whitespace.

This commit is contained in:
Roman Donchenko
2013-08-21 16:44:09 +04:00
parent 0d8cb2e319
commit f55740da70
193 changed files with 1685 additions and 1685 deletions

View File

@@ -345,7 +345,7 @@ class ImplMutex
public:
ImplMutex() { init(); }
~ImplMutex() { destroy(); }
void init();
void destroy();
@@ -450,7 +450,7 @@ void ImplMutex::init()
impl = (Impl*)malloc(sizeof(Impl));
impl->init();
}
void ImplMutex::destroy()
void ImplMutex::destroy()
{
impl->destroy();
free(impl);