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

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


Author: dburrows
Date: Mon Aug 15 20:12:08 2005
New Revision: 3846

Modified:
   branches/aptitude-0.3/aptitude/src/generic/problemresolver/exceptions.h
Log:
Doh

Modified: branches/aptitude-0.3/aptitude/src/generic/problemresolver/exceptions.h
==============================================================================
--- branches/aptitude-0.3/aptitude/src/generic/problemresolver/exceptions.h	(original)
+++ branches/aptitude-0.3/aptitude/src/generic/problemresolver/exceptions.h	Mon Aug 15 20:12:08 2005
@@ -28,9 +28,9 @@
 
 /** An exception indicating that no more solutions are available. */
 class NoMoreSolutions : public ProblemResolverError {
-  std::string errmsg()
+  std::string errmsg() const
   {
-    return "No more solutions to this dependency problem."
+    return "No more solutions to this dependency problem.";
   }
 };
 
@@ -38,7 +38,7 @@
  *  find a solution.
  */
 class NoMoreTime:public ProblemResolverError {
-  std::string errmsg()
+  std::string errmsg() const
   {
     return "No more time to solve this dependency problem.";
   }



More information about the Aptitude-svn-commit mailing list