Rename SharedROM to SharedRom

This commit is contained in:
scawful
2024-04-14 14:51:53 -05:00
parent 7e46cf1c64
commit 5953e58bd4
21 changed files with 26 additions and 24 deletions

View File

@@ -678,10 +678,10 @@ class Rom : public core::ExperimentFlags {
/**
* @brief A class to hold a shared pointer to a ROM object.
*/
class SharedROM {
class SharedRom {
public:
SharedROM() = default;
virtual ~SharedROM() = default;
SharedRom() = default;
virtual ~SharedRom() = default;
std::shared_ptr<Rom> shared_rom() {
if (!shared_rom_) {