changed "///" to "//" in comments

This commit is contained in:
black
2025-07-08 20:41:51 +02:00
parent bc77fae7ee
commit ab77f7118a
3 changed files with 68 additions and 63 deletions

View File

@@ -6,21 +6,21 @@
#define MEMORY_H
#include <array>
/// Eine Hauptspeicherklasse als Singleton implementiert.
/// Als Hauptspeicher wird ein Array genutzt.
// Eine Hauptspeicherklasse als Singleton implementiert.
// Als Hauptspeicher wird ein Array genutzt.
class Memory {
private:
Memory();
/// Singleton instance
// Singleton instance
static Memory *m_instance;
/// Hauptspeicher (hier 32 kB groß)
// Hauptspeicher (hier 32 kB groß)
std::array<int, 8192> m_memory{};
public:
/// Singleton Logik
// Singleton Logik
Memory(const Memory &) = delete;
Memory(const Memory &&) = delete;