From 85c4e009f358a4ebc7475704ca45441fa75f713d Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 14 May 2018 20:03:32 -0400 Subject: [PATCH] Undoes reformatting error. --- Storage/Disk/Drive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Disk/Drive.cpp b/Storage/Disk/Drive.cpp index 3660ffc2b..d2c61f98b 100644 --- a/Storage/Disk/Drive.cpp +++ b/Storage/Disk/Drive.cpp @@ -21,7 +21,7 @@ using namespace Storage::Disk; Drive::Drive(unsigned int input_clock_rate, int revolutions_per_minute, int number_of_heads): Storage::TimedEventLoop(input_clock_rate), rotational_multiplier_(60, revolutions_per_minute), - available_heads_(number_of_heads){ + available_heads_(number_of_heads) { rotational_multiplier_.simplify(); const auto seed = static_cast(std::chrono::system_clock::now().time_since_epoch().count());