mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-06 07:28:44 +08:00
Fix two typos in gdb_binary_search.h
I noticed a couple of typos in gdb_binary_search.h. This fixes them. gdbsupport/ChangeLog 2020-03-08 Tom Tromey <tom@tromey.com> * gdb_binary_search.h: Fix two typos.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2020-03-08 Tom Tromey <tom@tromey.com>
|
||||||
|
|
||||||
|
* gdb_binary_search.h: Fix two typos.
|
||||||
|
|
||||||
2020-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
|
2020-03-06 Andrew Burgess <andrew.burgess@embecosm.com>
|
||||||
|
|
||||||
* .dir-locals.el: New file.
|
* .dir-locals.el: New file.
|
||||||
|
@ -26,9 +26,9 @@
|
|||||||
namespace gdb {
|
namespace gdb {
|
||||||
|
|
||||||
/* Implements a binary search using C++ iterators.
|
/* Implements a binary search using C++ iterators.
|
||||||
This differs from std::binary_search in that it returns an interator for
|
This differs from std::binary_search in that it returns an iterator for
|
||||||
the found element and in that the type of EL can be different from the
|
the found element and in that the type of EL can be different from the
|
||||||
type of the elements in the countainer.
|
type of the elements in the container.
|
||||||
|
|
||||||
COMP is a C-style comparison function with signature:
|
COMP is a C-style comparison function with signature:
|
||||||
int comp(const value_type& a, const T& b);
|
int comp(const value_type& a, const T& b);
|
||||||
|
Reference in New Issue
Block a user