OpenIndiana and Solaris port

This commit is contained in:
Ulrich Wilkens
2014-10-28 19:46:43 +01:00
committed by Jon Trulson
parent 42e891d9e7
commit 01d6c363fa
296 changed files with 1049 additions and 1091 deletions

View File

@@ -45,7 +45,7 @@ extern int errno;
class ccException : public Exception
{
public:
DECLARE_EXCEPTION(ccException, Exception);
DECLARE_EXCEPTION(ccException, Exception)
virtual ~ccException() {};
@@ -63,7 +63,7 @@ protected:
char* msg;
public:
DECLARE_EXCEPTION(ccStringException, ccException);
DECLARE_EXCEPTION(ccStringException, ccException)
ccStringException(char const* m) : msg((char*)m) {};
~ccStringException() {};
@@ -80,7 +80,7 @@ protected:
int mindex;
public:
DECLARE_EXCEPTION(ccBoundaryException, ccException);
DECLARE_EXCEPTION(ccBoundaryException, ccException)
ccBoundaryException(int l, int h, int i) :
low(l), high(h), mindex(i) {};