From: Misha Brukman Date: Thu, 8 Jan 2009 06:11:51 +0000 (+0000) Subject: Remove extra blank line and space. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=538fbb508663e8c091f7e129ec36a6c7e6a4f1b1;p=oota-llvm.git Remove extra blank line and space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61916 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/StringSet.h b/include/llvm/ADT/StringSet.h index 685f8961439..00048361e86 100644 --- a/include/llvm/ADT/StringSet.h +++ b/include/llvm/ADT/StringSet.h @@ -15,7 +15,6 @@ #define LLVM_ADT_STRINGSET_H #include "llvm/ADT/StringMap.h" - #include namespace llvm { @@ -27,7 +26,7 @@ namespace llvm { class StringSet : public llvm::StringMap { typedef llvm::StringMap base; public: - bool insert (const std::string& InLang) { + bool insert(const std::string& InLang) { assert(!InLang.empty()); const char* KeyStart = &InLang[0]; const char* KeyEnd = KeyStart + InLang.size();