From a9eb277da13f2b00d740f82f23faa11b6f29f52f Mon Sep 17 00:00:00 2001 From: Strahinja Val Markovic Date: Wed, 4 Jul 2012 16:15:41 -0700 Subject: [PATCH] Fixing brace style usage --- cpp/ycm/Result.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cpp/ycm/Result.cpp b/cpp/ycm/Result.cpp index 9604604c..b63befd7 100644 --- a/cpp/ycm/Result.cpp +++ b/cpp/ycm/Result.cpp @@ -121,7 +121,8 @@ Result::Result( const Result& other ) } -bool Result::operator< ( const Result &other ) const { +bool Result::operator< ( const Result &other ) const +{ // Yes, this is ugly but it also needs to be fast. Since this is called a // bazillion times, we have to make sure only the required comparisons are // made, and no more.