diff options
author | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-05 16:34:42 +0000 |
---|---|---|
committer | dnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-09-05 16:34:42 +0000 |
commit | 989353a67c1ea4be1df43e4b980016c1a4930113 (patch) | |
tree | 751f020d2bf9fa4f3b89d31c2acf37083b6cf5c3 /gcc/vec.h | |
parent | 547b938d4c49b94d1837eb784a643c2f50ea2e9c (diff) | |
download | gcc-989353a67c1ea4be1df43e4b980016c1a4930113.tar.gz |
PR bootstrap/54484
* vec.h (vec_t::lower_bound): Fix spelling of LESSTHAN
argument.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190988 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/vec.h')
-rw-r--r-- | gcc/vec.h | 2 |
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; |