From 538fbb508663e8c091f7e129ec36a6c7e6a4f1b1 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Thu, 8 Jan 2009 06:11:51 +0000 Subject: Remove extra blank line and space. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61916 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/StringSet.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'include/llvm/ADT') diff --git a/include/llvm/ADT/StringSet.h b/include/llvm/ADT/StringSet.h index 685f896..0004836 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(); -- cgit v1.1