mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 02:53:10 +01:00
Remove trailing whitespace (#3668)
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user