Whitespace fix

This commit is contained in:
Strahinja Val Markovic 2012-07-02 11:10:28 -07:00
parent ee2bfe8952
commit 4eb160ac58

View File

@ -29,8 +29,8 @@ namespace YouCompleteMe
namespace namespace
{ {
int LongestCommonSubsequenceLength(const std::string &first, int LongestCommonSubsequenceLength( const std::string &first,
const std::string &second) const std::string &second )
{ {
const std::string &longer = first.size() > second.size() ? first : second; const std::string &longer = first.size() > second.size() ? first : second;
const std::string &shorter = first.size() > second.size() ? second : first; const std::string &shorter = first.size() > second.size() ? second : first;