From 4a266e35d4c756af6163a314585e55ecb65a4c0c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 4 May 2005 16:31:24 +0000 Subject: [PATCH] * GCC 2.95 compatibility fix in constness; strangely, I think this should not have worked at all. --- src/libstore/store.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstore/store.hh b/src/libstore/store.hh index bcaea401e2..bcf11ce963 100644 --- a/src/libstore/store.hh +++ b/src/libstore/store.hh @@ -28,7 +28,7 @@ struct Substitute is the store path to be substituted). */ Strings args; - bool operator == (const Substitute & sub); + bool operator == (const Substitute & sub) const; }; typedef list Substitutes;