diff options
author | Gabe Black <gabeblack@google.com> | 2018-06-08 15:27:07 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-08-15 01:32:43 +0000 |
commit | ec9d7fa955fd9664947042742aa8287c936b53ea (patch) | |
tree | df28b8d10090b38976ba48698f6526912f07e96c | |
parent | 42474e6391ec61a6a8891a3757eb8ba281ba1fb9 (diff) | |
download | gem5-ec9d7fa955fd9664947042742aa8287c936b53ea.tar.xz |
systemc: Make a test stop including an internal path for sc_vector.
The sc_vector class is available through systemc.h already, so there's
no reason to include an internal path which is only there on Accellera
by coincidence of the implementation.
Change-Id: I41cab4711c0837cd9b20c21871b79be5165bf498
Reviewed-on: https://gem5-review.googlesource.com/11176
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
6 files changed, 0 insertions, 8 deletions
diff --git a/src/systemc/tests/systemc/utils/sc_vector/test01/test01.cpp b/src/systemc/tests/systemc/utils/sc_vector/test01/test01.cpp index 47cc9d45a..d03dfe496 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test01/test01.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test01/test01.cpp @@ -37,7 +37,6 @@ #include "systemc.h" -#include "sysc/utils/sc_vector.h" using sc_core::sc_vector; SC_MODULE( sub_module ) diff --git a/src/systemc/tests/systemc/utils/sc_vector/test02/test02.cpp b/src/systemc/tests/systemc/utils/sc_vector/test02/test02.cpp index 7b827dd3a..25bae9152 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test02/test02.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test02/test02.cpp @@ -43,7 +43,6 @@ #include "systemc.h" -#include "sysc/utils/sc_vector.h" using sc_core::sc_vector; #ifdef USE_BOOST diff --git a/src/systemc/tests/systemc/utils/sc_vector/test03/test03.cpp b/src/systemc/tests/systemc/utils/sc_vector/test03/test03.cpp index 9feebdc64..bc08cb637 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test03/test03.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test03/test03.cpp @@ -37,7 +37,6 @@ #include "systemc.h" -#include "sysc/utils/sc_vector.h" using sc_core::sc_vector; SC_MODULE( sub_module ) diff --git a/src/systemc/tests/systemc/utils/sc_vector/test04/test04.cpp b/src/systemc/tests/systemc/utils/sc_vector/test04/test04.cpp index e8aa4df8b..378b77f4b 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test04/test04.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test04/test04.cpp @@ -36,8 +36,6 @@ *****************************************************************************/ #include "systemc.h" -#include "sysc/utils/sc_vector.h" - SC_MODULE( mesh_node ) { diff --git a/src/systemc/tests/systemc/utils/sc_vector/test05/test05.cpp b/src/systemc/tests/systemc/utils/sc_vector/test05/test05.cpp index 551b4fad1..fe36d3e88 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test05/test05.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test05/test05.cpp @@ -37,7 +37,6 @@ #include <systemc.h> -#include "sysc/utils/sc_vector.h" using sc_core::sc_vector; typedef sc_vector< sc_fifo_out<int> > port_vec; diff --git a/src/systemc/tests/systemc/utils/sc_vector/test06/test06.cpp b/src/systemc/tests/systemc/utils/sc_vector/test06/test06.cpp index 051d49c31..e1db523da 100644 --- a/src/systemc/tests/systemc/utils/sc_vector/test06/test06.cpp +++ b/src/systemc/tests/systemc/utils/sc_vector/test06/test06.cpp @@ -37,8 +37,6 @@ #include "systemc" -#include "sysc/utils/sc_vector.h" - using sc_core::sc_object; using sc_core::sc_vector; using sc_core::sc_mutex; |