[Aptitude-svn-commit] r3847 - branches/aptitude-0.3/aptitude/src/generic

Daniel Burrows dburrows at costa.debian.org
Mon Aug 15 20:12:55 UTC 2005


Author: dburrows
Date: Mon Aug 15 20:12:54 2005
New Revision: 3847

Modified:
   branches/aptitude-0.3/aptitude/src/generic/exception.h
Log:
Forgot that I need the 'const' so const references work.

Modified: branches/aptitude-0.3/aptitude/src/generic/exception.h
==============================================================================
--- branches/aptitude-0.3/aptitude/src/generic/exception.h	(original)
+++ branches/aptitude-0.3/aptitude/src/generic/exception.h	Mon Aug 15 20:12:54 2005
@@ -29,7 +29,7 @@
 class Exception
 {
 public:
-  virtual std::string errmsg()=0;
+  virtual std::string errmsg() const=0;
   virtual ~Exception() {}
 };
 



More information about the Aptitude-svn-commit mailing list