[IDE] Rename "code_completion" namespace to "ide"

Swift SVN r6834
This commit is contained in:
Argyrios Kyrtzidis
2013-08-02 02:50:28 +00:00
parent f9a446b410
commit 7e81b4919a
5 changed files with 12 additions and 12 deletions

View File

@@ -13,9 +13,9 @@
#include <string>
using namespace swift;
using namespace code_completion;
using namespace ide;
std::string swift::code_completion::removeCodeCompletionTokens(
std::string swift::ide::removeCodeCompletionTokens(
StringRef Input, StringRef TokenName, unsigned *CompletionOffset) {
assert(TokenName.size() >= 1);
@@ -772,7 +772,7 @@ public:
} // end unnamed namespace
CodeCompletionCallbacksFactory *
swift::code_completion::makeCodeCompletionCallbacksFactory(
swift::ide::makeCodeCompletionCallbacksFactory(
CodeCompletionContext &CompletionContext,
CodeCompletionConsumer &Consumer) {
return new CodeCompletionCallbacksFactoryImpl(CompletionContext, Consumer);