astyle format update

This commit is contained in:
Strahinja Val Markovic 2013-01-22 19:42:44 -08:00
parent ee919417af
commit 3706750b40
3 changed files with 7 additions and 7 deletions

View File

@ -29,8 +29,8 @@
namespace YouCompleteMe { namespace YouCompleteMe {
typedef boost::shared_ptr< typedef boost::shared_ptr <
boost::remove_pointer< CXDiagnostic >::type > DiagnosticWrap; boost::remove_pointer< CXDiagnostic >::type > DiagnosticWrap;
std::string CXStringToString( CXString text ); std::string CXStringToString( CXString text );

View File

@ -27,8 +27,8 @@ using boost::shared_ptr;
using boost::remove_pointer; using boost::remove_pointer;
namespace YouCompleteMe { namespace YouCompleteMe {
typedef shared_ptr< typedef shared_ptr <
remove_pointer< CXCompileCommands >::type > CompileCommandsWrap; remove_pointer< CXCompileCommands >::type > CompileCommandsWrap;
CompilationDatabase::CompilationDatabase( CompilationDatabase::CompilationDatabase(
const std::string &path_to_directory ) const std::string &path_to_directory )

View File

@ -33,8 +33,8 @@ using boost::remove_pointer;
namespace YouCompleteMe { namespace YouCompleteMe {
typedef shared_ptr< typedef shared_ptr <
remove_pointer< CXCodeCompleteResults >::type > CodeCompleteResultsWrap; remove_pointer< CXCodeCompleteResults >::type > CodeCompleteResultsWrap;
TranslationUnit::TranslationUnit( TranslationUnit::TranslationUnit(
const std::string &filename, const std::string &filename,
@ -150,7 +150,7 @@ std::vector< CompletionData > TranslationUnit::CandidatesForLocation(
clang_disposeCodeCompleteResults ); clang_disposeCodeCompleteResults );
std::vector< CompletionData > candidates = ToCompletionDataVector( std::vector< CompletionData > candidates = ToCompletionDataVector(
results.get() ); results.get() );
return candidates; return candidates;
} }