Fix bug in cache clear clang completer subcommand

This commit is contained in:
Strahinja Val Markovic 2013-09-27 16:16:55 -07:00
parent 4a95c2fc7c
commit a6a364de41

View File

@ -152,7 +152,7 @@ class ClangCompleter( Completer ):
elif command == 'GoToDefinitionElseDeclaration':
return self._GoToDefinitionElseDeclaration( request_data )
elif command == 'ClearCompilationFlagCache':
return self._ClearCompilationFlagCache( request_data )
return self._ClearCompilationFlagCache()
raise ValueError( self.UserCommandsHelpMessage() )