mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-23 15:29:24 +00:00
(Hopefully) fix compilation issue on g++
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
67487b5b6e
commit
d27b490d4c
@ -8,7 +8,7 @@
|
||||
namespace EightBit {
|
||||
class Symbols {
|
||||
public:
|
||||
Symbols(std::string path);
|
||||
Symbols(std::string path = "");
|
||||
|
||||
const std::map<uint16_t, std::string>& getLabels() const { return labels; }
|
||||
const std::map<uint16_t, std::string>& getConstants() const { return constants; }
|
||||
|
@ -32,7 +32,7 @@ private:
|
||||
const Configuration& m_configuration;
|
||||
EightBit::Ram m_ram = 0x10000;
|
||||
EightBit::MOS6502 m_cpu;
|
||||
EightBit::Symbols m_symbols = "";
|
||||
EightBit::Symbols m_symbols;
|
||||
EightBit::Disassembly m_disassembler;
|
||||
EightBit::Profiler m_profiler;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user