[Decompiler] Fix printing of lets (#314)

* fix let prints and windows warnings

* missing include for windows

* windows again
This commit is contained in:
water111
2021-03-07 12:01:59 -05:00
committed by GitHub
parent d8a82eeca1
commit 9074a35b9b
33 changed files with 158 additions and 86 deletions
@@ -83,7 +83,7 @@ Val* Compiler::compile_asm_file(const goos::Object& form, const goos::Object& re
bool no_code = false;
bool disassemble = false;
std::vector<std::pair<std::string, float>> timing;
std::vector<std::pair<std::string, double>> timing;
Timer total_timer;
// parse arguments
@@ -422,6 +422,7 @@ std::string Compiler::make_symbol_info_description(const SymbolInfo& info) {
m_goos.reader.db.get_info_for(info.src_form()));
default:
assert(false);
return {};
}
}