From 4eb160ac58ffa620105db1e59e35819af24f167e Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Mon, 2 Jul 2012 11:10:28 -0700 Subject: [PATCH] Whitespace fix --- cpp/ycm/Result.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/ycm/Result.cpp b/cpp/ycm/Result.cpp index f43a257f..9604604c 100644 --- a/cpp/ycm/Result.cpp +++ b/cpp/ycm/Result.cpp @@ -29,8 +29,8 @@ namespace YouCompleteMe namespace { -int LongestCommonSubsequenceLength(const std::string &first, - const std::string &second) +int LongestCommonSubsequenceLength( const std::string &first, + const std::string &second ) { const std::string &longer = first.size() > second.size() ? first : second; const std::string &shorter = first.size() > second.size() ? second : first;