summaryrefslogtreecommitdiff
path: root/src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh')
-rw-r--r--src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh b/src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh
index 09973b82d..83817b353 100644
--- a/src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh
+++ b/src/mem/ruby/network/garnet/fixed-pipeline/Switch_d.hh
@@ -32,6 +32,7 @@
#define SWITCH_D_H
#include <iostream>
+#include <vector>
#include "mem/ruby/network/garnet/NetworkHeader.hh"
#include "mem/ruby/common/Consumer.hh"
@@ -63,8 +64,8 @@ private:
int m_num_inports;
double m_crossbar_activity;
Router_d *m_router;
- Vector<flitBuffer_d *> m_switch_buffer;
- Vector<OutputUnit_d *> m_output_unit;
+ std::vector<flitBuffer_d *> m_switch_buffer;
+ std::vector<OutputUnit_d *> m_output_unit;
};
#endif