diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2025-01-15 17:25:15 +0100 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2025-01-15 17:25:15 +0100 |
commit | 1d0fa7f3e0c5cf2b6562304f5dc880036ffc8a44 (patch) | |
tree | 3a4ecb3eec9a033322029c566529c6093a03b32a /gdbserver | |
parent | ce43125445c7d22319c7f46db8286f31e18e47e5 (diff) | |
download | gdb-1d0fa7f3e0c5cf2b6562304f5dc880036ffc8a44.zip gdb-1d0fa7f3e0c5cf2b6562304f5dc880036ffc8a44.tar.gz gdb-1d0fa7f3e0c5cf2b6562304f5dc880036ffc8a44.tar.bz2 |
gdbserver: remove an obsolete comment in tracepoint.cc
The comment
/* Functions local to this file. */
has somehow been positioned above struct definitions, not functions.
Some static function declarations are given after the structs, to
where the comment could be moved, but the comment is not really
helpful. Therefore remove it.
Diffstat (limited to 'gdbserver')
-rw-r--r-- | gdbserver/tracepoint.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdbserver/tracepoint.cc b/gdbserver/tracepoint.cc index 2e3960e..1395c70 100644 --- a/gdbserver/tracepoint.cc +++ b/gdbserver/tracepoint.cc @@ -1169,8 +1169,6 @@ static char *tracing_stop_note; #endif -/* Functions local to this file. */ - /* Base "class" for tracepoint type specific data to be passed down to collect_data_at_tracepoint. */ struct tracepoint_hit_ctx |