diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-22 00:17:18 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-03-22 00:17:18 -0300 |
commit | 35d21c08813242002e31f1d9bbc45fed5a21ebde (patch) | |
tree | 60bce83ab5f359d83ee2537977c306d1ba7eba2b /core/command_queue_mt.h | |
parent | f2df8c94b2e5ba6c4eee3515d1d30f36194ca803 (diff) | |
download | redot-engine-35d21c08813242002e31f1d9bbc45fed5a21ebde.tar.gz |
Fix several in-class initialization clang warning
Diffstat (limited to 'core/command_queue_mt.h')
-rw-r--r-- | core/command_queue_mt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/command_queue_mt.h b/core/command_queue_mt.h index c1439bdc4c..3942b961d3 100644 --- a/core/command_queue_mt.h +++ b/core/command_queue_mt.h @@ -309,9 +309,9 @@ class CommandQueueMT { }; uint8_t command_mem[COMMAND_MEM_SIZE]; - uint32_t read_ptr = 0; - uint32_t write_ptr = 0; - uint32_t dealloc_ptr = 0; + uint32_t read_ptr; + uint32_t write_ptr; + uint32_t dealloc_ptr; SyncSemaphore sync_sems[SYNC_SEMAPHORES]; Mutex *mutex; Semaphore *sync; |