aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2005-08-24 14:03:07 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2005-08-24 14:03:07 +0000
commit9e7a601eaf8de846cee7ada9218346acf6bb864d (patch)
tree31626adda3cb3d4c6901a6356aa05946d0e78327 /include/llvm/ADT
parentca09bd0732e64461acd2d92c356a3237ab9de7d1 (diff)
downloadexternal_llvm-9e7a601eaf8de846cee7ada9218346acf6bb864d.zip
external_llvm-9e7a601eaf8de846cee7ada9218346acf6bb864d.tar.gz
external_llvm-9e7a601eaf8de846cee7ada9218346acf6bb864d.tar.bz2
Wrap long lines
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/hash_map.in6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/llvm/ADT/hash_map.in b/include/llvm/ADT/hash_map.in
index 1249dbb..0b27ed3 100644
--- a/include/llvm/ADT/hash_map.in
+++ b/include/llvm/ADT/hash_map.in
@@ -84,7 +84,8 @@ template <typename KeyType,
class _HashFcn = hash<KeyType>,
class _EqualKey = equal_to<KeyType>,
class _A = allocator <ValueType> >
-class hash_map : public rw_hashmap<KeyType, ValueType, class _HashFcn, class _EqualKey, class _A> {
+class hash_map : public rw_hashmap<KeyType, ValueType, class _HashFcn,
+ class _EqualKey, class _A> {
};
template <typename KeyType,
@@ -92,7 +93,8 @@ template <typename KeyType,
class _HashFcn = hash<KeyType>,
class _EqualKey = equal_to<KeyType>,
class _A = allocator <ValueType> >
-class hash_multimap : public rw_hashmultimap<KeyType, ValueType, class _HashFcn, class _EqualKey, class _A> {
+class hash_multimap : public rw_hashmultimap<KeyType, ValueType, class _HashFcn,
+ class _EqualKey, class _A> {
};
} // end HASH_NAMESPACE;