Performance fix; delete unused data structures
[c11tester.git] / sleeps.cc
index 0528374b3ac4c2a053fd756413dcd180e8b48430..24e0eeaca56922d237e545a3101c07188a4e5944 100644 (file)
--- a/sleeps.cc
+++ b/sleeps.cc
@@ -8,7 +8,7 @@ unsigned int __sleep (unsigned int seconds)
 {
        model->switch_to_master(
                new ModelAction(NOOP, std::memory_order_seq_cst, NULL)
-       );
+               );
        return 0;
 }
 
@@ -21,6 +21,6 @@ int usleep (useconds_t useconds)
 {
        model->switch_to_master(
                new ModelAction(NOOP, std::memory_order_seq_cst, NULL)
-       );
+               );
        return 0;
 }