예제 #1
0
파일: error.cpp 프로젝트: GNOME/solang
Error::Error(guint64 errno, const Glib::ustring & message,
             const std::string & function, const std::string & filename,
             guint64 line) :
    std::exception(),
    errno_(errno),
    message_(message),
    callStack_()
{
    add_call_info(function, filename, line);    
}
예제 #2
0
 void add_call_info_here(CodeEmitInfo* info)                              { add_call_info(code_offset(), info); }