base: Remove unnecessary includes from base/loader/symtab.[cc|hh].
These were either completely unnecessary, or headers in the .cc which had already been included in the .hh and were not needed beyond their use in the .hh. Change-Id: Ic95e29f3fdd8cab00ab93d254d2e1c25aacf4632 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/40619 Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br> Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Maintainer: Jason Lowe-Power <power.jg@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
@@ -30,14 +30,9 @@
|
||||
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "base/logging.hh"
|
||||
#include "base/str.hh"
|
||||
#include "base/trace.hh"
|
||||
#include "base/types.hh"
|
||||
#include "sim/serialize.hh"
|
||||
|
||||
namespace Loader
|
||||
{
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef __SYMTAB_HH__
|
||||
#define __SYMTAB_HH__
|
||||
#ifndef __BASE_LOADER_SYMTAB_HH__
|
||||
#define __BASE_LOADER_SYMTAB_HH__
|
||||
|
||||
#include <functional>
|
||||
#include <iosfwd>
|
||||
@@ -36,7 +36,6 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "base/trace.hh"
|
||||
#include "base/types.hh"
|
||||
#include "sim/serialize.hh"
|
||||
|
||||
@@ -239,4 +238,4 @@ extern SymbolTable debugSymbolTable;
|
||||
|
||||
} // namespace Loader
|
||||
|
||||
#endif // __SYMTAB_HH__
|
||||
#endif // __BASE_LOADER_SYMTAB_HH__
|
||||
|
||||
Reference in New Issue
Block a user