Skip to content

Commit 876c853

Browse files
committed
gdbsupport: add missing include guard to remote-args.h
Also, fix a type in "namespace". Change-Id: I3e5d1d49c765a035217437c0635b12dc28e41bf6
1 parent 745cf6b commit 876c853

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

gdbsupport/remote-args.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
You should have received a copy of the GNU General Public License
1818
along with this program. If not, see <http://www.gnu.org/licenses/>. */
1919

20+
#ifndef GDBSUPPORT_REMOTE_ARGS_H
21+
#define GDBSUPPORT_REMOTE_ARGS_H
22+
2023
/* The functions declared here are used when passing inferior arguments
2124
from GDB to gdbserver.
2225
@@ -52,4 +55,6 @@ extern std::string join (const std::vector<char *> &args);
5255

5356
} /* namespace remote_args */
5457

55-
} /* namespac gdb */
58+
} /* namespace gdb */
59+
60+
#endif /* GDBSUPPORT_REMOTE_ARGS_H */

0 commit comments

Comments
 (0)