diff options
author | Roland McGrath <roland@gnu.org> | 2013-10-11 17:38:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2013-10-11 17:38:32 +0000 |
commit | 679e4abfc5bfd1eb8b76e812baf263897bc18d3a (patch) | |
tree | f4f13d7b28aef1196962fd06811e5b549b75c737 /gold/archive.h | |
parent | 9b557b58d3ac365d4cd60dd28fff3fbaf41f5481 (diff) | |
download | gdb-679e4abfc5bfd1eb8b76e812baf263897bc18d3a.zip gdb-679e4abfc5bfd1eb8b76e812baf263897bc18d3a.tar.gz gdb-679e4abfc5bfd1eb8b76e812baf263897bc18d3a.tar.bz2 |
gold/
* archive.h: Use struct rather than class for forward declaration
of Read_symbols_data.
Diffstat (limited to 'gold/archive.h')
-rw-r--r-- | gold/archive.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/archive.h b/gold/archive.h index e73a687..a47b423 100644 --- a/gold/archive.h +++ b/gold/archive.h @@ -1,6 +1,6 @@ // archive.h -- archive support for gold -*- C++ -*- -// Copyright 2006, 2007, 2008, 2010, 2011 Free Software Foundation, Inc. +// Copyright 2006, 2007, 2008, 2010, 2011, 2013 Free Software Foundation, Inc. // Written by Ian Lance Taylor <iant@google.com>. // This file is part of gold. @@ -40,7 +40,7 @@ class Input_group; class Layout; class Symbol_table; class Object; -class Read_symbols_data; +struct Read_symbols_data; class Input_file_lib; class Incremental_archive_entry; |