certi-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[certi-cvs] certi/include baseTypes.hh


From: CERTI CVS commits
Subject: [certi-cvs] certi/include baseTypes.hh
Date: Tue, 26 Jul 2011 08:19:37 +0000

CVSROOT:        /sources/certi
Module name:    certi
Changes by:     Eric NOULARD <erk>      11/07/26 08:19:35

Modified files:
        include        : baseTypes.hh 

Log message:
        Avoid non-standard addition to the RTI::Exception type

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/certi/include/baseTypes.hh?cvsroot=certi&r1=3.14&r2=3.15

Patches:
Index: baseTypes.hh
===================================================================
RCS file: /sources/certi/certi/include/baseTypes.hh,v
retrieving revision 3.14
retrieving revision 3.15
diff -u -b -r3.14 -r3.15
--- baseTypes.hh        2 Apr 2009 19:58:11 -0000       3.14
+++ baseTypes.hh        26 Jul 2011 08:19:31 -0000      3.15
@@ -31,7 +31,6 @@
     virtual Exception *cloneSelf() const throw() = 0 ;
     virtual void throwSelf() const = 0 ;
     const std::string displayMe() const;
-    virtual long getType() = 0;
 };
 
 #define RTI_EXCEPT(A) \
@@ -45,5 +44,4 @@
     A (A const &toCopy) : Exception(toCopy) { _name = #A ; this->displayMe();} 
\
     Exception *cloneSelf() const throw() { return (new A(_reason)); } \
     void throwSelf() const { throw *this ; } \
-    long getType() {return type;}; \
 };



reply via email to

[Prev in Thread] Current Thread [Next in Thread]