(Hopefully) fix compilation issue on g++

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon 2018-06-16 09:53:44 +01:00
parent 67487b5b6e
commit d27b490d4c
2 changed files with 2 additions and 2 deletions

View File

@ -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; }

View File

@ -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;