Fixed 80 col. violation.

llvm-svn: 45752
This commit is contained in:
Ted Kremenek 2008-01-08 19:38:55 +00:00
parent 96b1ce4f0a
commit 9b0f70bb85
1 changed files with 2 additions and 1 deletions

View File

@ -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) {