tdenniston / bish

Bish is a language that compiles to Bash. It's designed to give shell scripting a more comfortable and modern feel.
MIT License
1.48k stars 36 forks source link

Fix build error #1

Closed amitsaha closed 9 years ago

amitsaha commented 9 years ago

g++ -c src/Parser.cpp -o obj/Parser.o -MMD -MF obj/Parser.d -MT obj/Parser.o src/Parser.cpp: In member function ‘std::string Bish::Parser::read_file(const string&)’: src/Parser.cpp:297:25: error: no matching function for call to ‘std::basic_ifstream::basic_ifstream(const string&)’ std::ifstream t(path);