ports/textproc/clo++/patches/patch-src_Clo_hh

11 lines
455 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
--- src/Clo.hh.orig Mon Aug 16 19:40:35 2004
+++ src/Clo.hh Mon Aug 16 19:40:49 2004
@@ -63,6 +63,7 @@ namespace Clo {
autohelp = autoversion = false;
} // end constructor
Exception(string why) {m_why = why; autohelp=autoversion=false;}
+ ~Exception() throw() {};
const char *what() {return m_why.c_str();}
const char *fancy() {if(m_fancy.empty()) return m_why.c_str(); else return m_fancy.c_str();}
bool autohelp, autoversion;