projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ffe6ac
)
Remove extra blank line and space.
author
Misha Brukman
<brukman+llvm@gmail.com>
Thu, 8 Jan 2009 06:11:51 +0000
(06:11 +0000)
committer
Misha Brukman
<brukman+llvm@gmail.com>
Thu, 8 Jan 2009 06:11:51 +0000
(06:11 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61916
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ADT/StringSet.h
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/StringSet.h
b/include/llvm/ADT/StringSet.h
index 685f8961439d739de60f7973ff43ed813f75d058..00048361e86f2906b936db48a2d8004de244f2eb 100644
(file)
--- 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 <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();