ports/textproc/xxdiff/files/patch-exceptions.h
Pete Fritchman d3dc8b1a83 Fix build on -current.
PR:		54075
Submitted by:	Georg-W. Koltermann <Georg.Koltermann@mscsoftware.com>
2003-08-17 16:53:21 +00:00

29 lines
622 B
C++

$FreeBSD$
--- exceptions.h.orig Mon Jun 30 17:27:19 2003
+++ exceptions.h Mon Jun 30 17:29:00 2003
@@ -116,6 +116,8 @@
// Returns true if this is a benine exception.
bool isBenine() const;
+ ~XxUsageError() throw() { }
+
private:
/*----- data members -----*/
@@ -142,6 +144,7 @@
const QString& msg = QString::null // use errno string only.
);
+ ~XxIoError() throw() { }
};
/*==============================================================================
@@ -161,6 +164,8 @@
XxInternalError(
XX_EXC_PARAMS_DECL(file,line)
);
+
+ ~XxInternalError() throw() { }
};