Fix warning
[c11tester.git] / execution.h
index 5493489126a7d30a101e4400e9289acfe130ff4a..2dc3333bb3deb8a3d804d6369658dcdfa771337d 100644 (file)
@@ -135,15 +135,16 @@ private:
 
        /** The scheduler to use: tracks the running/ready Threads */
        Scheduler * const scheduler;
+       action_list_t action_trace;
 
+  
        SnapVector<Thread *> thread_map;
        SnapVector<Thread *> pthread_map;
        uint32_t pthread_counter;
 
-       action_list_t action_trace;
 
        /** Per-object list of actions. Maps an object (i.e., memory location)
-        * to a trace of all actions performed on the object. 
+        * to a trace of all actions performed on the object.
         * Used only for SC fences, unlocks, & wait.
         */
        HashTable<const void *, action_list_t *, uintptr_t, 2> obj_map;