aboutsummaryrefslogtreecommitdiff
path: root/gcc/vec.h
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2012-09-05 16:34:42 +0000
committerDiego Novillo <dnovillo@google.com>2012-09-05 16:34:42 +0000
commit5ee6e1308ac7fb059d75e9a218dd79373c186f7d (patch)
tree751f020d2bf9fa4f3b89d31c2acf37083b6cf5c3 /gcc/vec.h
parent93eae729f0d7d37da06751a9ebb343c345461b28 (diff)
PR bootstrap/54484
* vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN argument. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@190988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vec.h')
-rw-r--r--gcc/vec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/vec.h b/gcc/vec.h
index 441c9b5f791..fbf95d22682 100644
--- a/gcc/vec.h
+++ b/gcc/vec.h
@@ -1075,7 +1075,7 @@ vec_t<T>::lower_bound (T obj, bool (*lessthan)(T, T)) const
template<typename T>
unsigned
vec_t<T>::lower_bound (const T *ptr,
- bool (*lessthan_)(const T *, const T *)) const
+ bool (*lessthan)(const T *, const T *)) const
{
unsigned int len = VEC_length (T, this);
unsigned int half, middle;