Whitespace fix
This commit is contained in:
parent
ee2bfe8952
commit
4eb160ac58
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user