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,7 +39,7 @@ public:
/// Purges archived log files. The path to the
/// current "hot" log file is given.
/// To find archived log files, look for files
/// with a name consisting of the given path
/// with a name consisting of the given path
/// plus any suffix (e.g., .1, .20050929081500, .1.gz).
/// A list of archived files can be obtained by calling
/// the list() method.
@@ -67,9 +67,9 @@ class Foundation_API PurgeByAgeStrategy: public PurgeStrategy
public:
PurgeByAgeStrategy(const Timespan& age);
~PurgeByAgeStrategy();
void purge(const std::string& path);
private:
Timespan _age;
};
@@ -83,9 +83,9 @@ class Foundation_API PurgeByCountStrategy: public PurgeStrategy
public:
PurgeByCountStrategy(int count);
~PurgeByCountStrategy();
void purge(const std::string& path);
private:
int _count;
};