Remove trailing whitespace (#3668)

This commit is contained in:
John Vandenberg
2022-07-07 17:18:20 +08:00
committed by GitHub
parent 0af9524e16
commit 0e6e16645c
1330 changed files with 23570 additions and 23571 deletions

View File

@@ -39,14 +39,14 @@ public:
/// Creates the SingletonHolder.
{
}
~SingletonHolder()
/// Destroys the SingletonHolder and the singleton
/// object that it holds.
{
delete _pS;
}
S* get()
/// Returns a pointer to the singleton object
/// hold by the SingletonHolder. The first call
@@ -56,7 +56,7 @@ public:
if (!_pS) _pS = new S;
return _pS;
}
void reset()
/// Deletes the singleton object.
{
@@ -64,7 +64,7 @@ public:
delete _pS;
_pS = 0;
}
private:
S* _pS;
FastMutex _m;