Remove extra blank line and space.

llvm-svn: 61916
This commit is contained in:
Misha Brukman 2009-01-08 06:11:51 +00:00
parent c518dfd11b
commit 669b938d25
1 changed files with 1 additions and 2 deletions

View File

@ -15,7 +15,6 @@
#define LLVM_ADT_STRINGSET_H
#include "llvm/ADT/StringMap.h"
#include <cassert>
namespace llvm {
@ -27,7 +26,7 @@ namespace llvm {
class StringSet : public llvm::StringMap<char, AllocatorTy> {
typedef llvm::StringMap<char, AllocatorTy> 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();