diff options
| author | Nathan Conrad <[email protected]> | 2018-04-22 23:31:42 -0400 |
|---|---|---|
| committer | Nathan Conrad <[email protected]> | 2018-04-22 23:34:08 -0400 |
| commit | 373d64290239f3ed74d98b20494383f03fe189b6 (patch) | |
| tree | 918be07864511a5d7a5fca0be5a75fc4e8b6335e /src/gpgpu-sim/dram.h | |
| parent | f97a699ea5bee0a9df79afec40c0142d7ff8c5be (diff) | |
Some classes were referred to as a class and a struct (reported as clang warnings). This makes these consistent.
Diffstat (limited to 'src/gpgpu-sim/dram.h')
| -rw-r--r-- | src/gpgpu-sim/dram.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/dram.h b/src/gpgpu-sim/dram.h index a8bff14..15c63e7 100644 --- a/src/gpgpu-sim/dram.h +++ b/src/gpgpu-sim/dram.h @@ -87,7 +87,7 @@ struct bank_t unsigned int bkgrpindex; }; -struct mem_fetch; +class mem_fetch; class dram_t { @@ -178,7 +178,7 @@ private: unsigned int ave_mrqs_partial; unsigned int bwutil_partial; - struct memory_stats_t *m_stats; + class memory_stats_t *m_stats; class Stats* mrqq_Dist; //memory request queue inside DRAM friend class frfcfs_scheduler; |
