aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Use.h
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-08-27 23:44:33 +0000
committerGabor Greif <ggreif@gmail.com>2009-08-27 23:44:33 +0000
commit7362ce08cb2c1f0b544b18dbc21630fb4baebcfc (patch)
treeab562add7fce10ca928554df16111b6e8fd1844b /include/llvm/Use.h
parentb562b47deeb163d3c854b2d9670bf38a37b7816e (diff)
downloadexternal_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.zip
external_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.tar.gz
external_llvm-7362ce08cb2c1f0b544b18dbc21630fb4baebcfc.tar.bz2
eliminate all 80-col violations that I have introduced in my recent checkins (and some others more)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80304 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Use.h')
-rw-r--r--include/llvm/Use.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Use.h b/include/llvm/Use.h
index 00b9c43..970f69b 100644
--- a/include/llvm/Use.h
+++ b/include/llvm/Use.h
@@ -158,7 +158,8 @@ template<> struct simplify_type<const Use> {
template<typename UserTy> // UserTy == 'User' or 'const User'
-class value_use_iterator : public std::iterator<std::forward_iterator_tag, UserTy*, ptrdiff_t> {
+class value_use_iterator : public std::iterator<std::forward_iterator_tag,
+ UserTy*, ptrdiff_t> {
typedef std::iterator<std::forward_iterator_tag, UserTy*, ptrdiff_t> super;
typedef value_use_iterator<UserTy> _Self;