Commit e7933ded authored by Alvarez, Gonzalo's avatar Alvarez, Gonzalo
Browse files

Ainur: msg fixed

parent 17050580
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -53,7 +53,8 @@ struct MyProxyFor {
	template<typename T>
	static void convert(T& t, std::string str)
	{
		throw RuntimeError("complex not implemented yet\n");
		String msg("Unknown type ");
		throw RuntimeError("convert(): " + msg + typeid(t).name() + " for " + str + "\n");
	}

private: