1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-09-25 08:25:09 +00:00

Simplify namespace syntax.

This commit is contained in:
Thomas Harte
2023-05-10 16:02:18 -05:00
parent 25a245e35c
commit 2b56b7be0d
271 changed files with 291 additions and 1024 deletions

View File

@@ -14,8 +14,7 @@
#include "../../../ClockReceiver/ClockReceiver.hpp"
#include "../Encodings/MFM/Shifter.hpp"
namespace Storage {
namespace Disk {
namespace Storage::Disk {
/*!
Extends Controller with a built-in shift register and FM/MFM decoding logic,
@@ -166,7 +165,6 @@ class MFMController: public Controller {
CRC::CCITT crc_generator_;
};
}
}
#endif /* MFMDiskController_hpp */