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:
dcc8b4f
)
Fixed 80 col. violation.
author
Ted Kremenek
<kremenek@apple.com>
Tue, 8 Jan 2008 19:38:55 +0000
(19:38 +0000)
committer
Ted Kremenek
<kremenek@apple.com>
Tue, 8 Jan 2008 19:38:55 +0000
(19:38 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45752
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/ADT/ImmutableMap.h
patch
|
blob
|
history
diff --git
a/include/llvm/ADT/ImmutableMap.h
b/include/llvm/ADT/ImmutableMap.h
index bf5cc8ffd9de750c8407f33326335aac3c118524..ac4f1651b3ef2169fe6a517fb1e6dc9bf6aab0eb 100644
(file)
--- a/
include/llvm/ADT/ImmutableMap.h
+++ b/
include/llvm/ADT/ImmutableMap.h
@@
-76,7
+76,8
@@
public:
ImmutableMap GetEmptyMap() { return ImmutableMap(F.GetEmptyTree()); }
ImmutableMap Add(ImmutableMap Old, key_type_ref K, data_type_ref D) {
- return ImmutableMap(F.Add(Old.Root,std::make_pair<key_type,data_type>(K,D)));
+ return ImmutableMap(F.Add(Old.Root,
+ std::make_pair<key_type,data_type>(K,D)));
}
ImmutableMap Remove(ImmutableMap Old, key_type_ref K) {