diff options
| author | Tom Tromey <tromey@adacore.com> | 2026-04-29 12:34:13 -0600 |
|---|---|---|
| committer | Tom Tromey <tromey@adacore.com> | 2026-04-29 12:36:34 -0600 |
| commit | 5ed455efd8476ce4f70266d5797ef9f3eb1e8919 (patch) | |
| tree | 1f53a57fa8553c2340e17a0879758ba13a269bc5 | |
| parent | 8a5e138e6276ce7644ab858751440cb59f35623b (diff) | |
| download | fsf-binutils-gdb-5ed455efd8476ce4f70266d5797ef9f3eb1e8919.tar.gz fsf-binutils-gdb-5ed455efd8476ce4f70266d5797ef9f3eb1e8919.tar.bz2 fsf-binutils-gdb-5ed455efd8476ce4f70266d5797ef9f3eb1e8919.zip | |
Include traits.h in function-view.h
function-view.h uses gdb::Or but does not include gdbsupport/traits.h.
This patch corrects the oversight.
| -rw-r--r-- | gdbsupport/function-view.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdbsupport/function-view.h b/gdbsupport/function-view.h index a5beedf41e8..5a73f9e948e 100644 --- a/gdbsupport/function-view.h +++ b/gdbsupport/function-view.h @@ -193,6 +193,8 @@ unittests/function-view-selftests.c. */ #include <type_traits> +#include "gdbsupport/traits.h" + namespace gdb { namespace fv_detail { |
