summaryrefslogtreecommitdiff
path: root/src/debug.h
diff options
context:
space:
mode:
authorNathan Conrad <[email protected]>2018-04-22 23:31:42 -0400
committerNathan Conrad <[email protected]>2018-04-22 23:34:08 -0400
commit373d64290239f3ed74d98b20494383f03fe189b6 (patch)
tree918be07864511a5d7a5fca0be5a75fc4e8b6335e /src/debug.h
parentf97a699ea5bee0a9df79afec40c0142d7ff8c5be (diff)
Some classes were referred to as a class and a struct (reported as clang warnings). This makes these consistent.
Diffstat (limited to 'src/debug.h')
-rw-r--r--src/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.h b/src/debug.h
index 7c79f1e..1277494 100644
--- a/src/debug.h
+++ b/src/debug.h
@@ -87,7 +87,7 @@ extern int gpgpu_ptx_instruction_classification ;
class ptx_thread_info;
class ptx_instruction;
-bool thread_at_brkpt( ptx_thread_info *thd_info, const struct brk_pt &b );
+bool thread_at_brkpt( ptx_thread_info *thd_info, const class brk_pt &b );
void hit_watchpoint( unsigned watchpoint_num, ptx_thread_info *thd, const ptx_instruction *pI );
#endif