Skip to content

Commit

Permalink
Remove default argument for PlatformInconsistencyCheckerUtility::gene…
Browse files Browse the repository at this point in the history
…rateSuffi
  • Loading branch information
herve-er committed Oct 11, 2024
1 parent e1438cd commit c8f13b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void PlatformInconsistencyCheckerUtility::setMaxPath() {
_maxPathLength = CommonUtility::maxPathLength();
}

SyncName PlatformInconsistencyCheckerUtility::generateSuffix(SuffixType suffixType /*= SuffixTypeRename*/) {
SyncName PlatformInconsistencyCheckerUtility::generateSuffix(SuffixType suffixType) {
std::time_t now = std::time(nullptr);
std::tm tm = *std::localtime(&now);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class PlatformInconsistencyCheckerUtility {

SyncName charToHex(unsigned int c);
void setMaxPath();
SyncName generateSuffix(SuffixType suffixType = SuffixTypeRename);
SyncName generateSuffix(SuffixType suffixType);

static std::shared_ptr<PlatformInconsistencyCheckerUtility> _instance;
static size_t _maxPathLength;
Expand Down

0 comments on commit c8f13b9

Please sign in to comment.