| 52 | } |
| 53 | |
| 54 | void make_access_error(const std::string &obj_name, const std::string &var){ |
| 55 | std::string s = "Runtime error: get_" + var + " called for "; |
| 56 | s += obj_name + " but " + "\"" + var + "\" not assigned\n"; |
| 57 | throw std::runtime_error(s); |
| 58 | } |
no outgoing calls