diff options
Diffstat (limited to 'Swift/Controllers/PreviousStatusStore.cpp')
| -rw-r--r-- | Swift/Controllers/PreviousStatusStore.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/Controllers/PreviousStatusStore.cpp b/Swift/Controllers/PreviousStatusStore.cpp index 947cdc7..ca0a12e 100644 --- a/Swift/Controllers/PreviousStatusStore.cpp +++ b/Swift/Controllers/PreviousStatusStore.cpp @@ -40,7 +40,7 @@ std::vector<TypeStringPair> PreviousStatusStore::getSuggestions(const std::strin  			suggestions.push_back(status);  		}  	} -	if (suggestions.size() == 0) { +	if (suggestions.empty()) {  		TypeStringPair suggestion(StatusShow::Online, message);  		suggestions.push_back(suggestion);  	}  | 
 Swift