about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2005-05-04T16·31+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2005-05-04T16·31+0000
commit4a266e35d4c756af6163a314585e55ecb65a4c0c (patch)
tree122b0a3c0f4d998fb998aa06b3418b8f89619b58 /src
parentd7b3cdbd9142ed702a98ebb6a3f6759410d27773 (diff)
* GCC 2.95 compatibility fix in constness; strangely, I think this
  should not have worked at all.

Diffstat (limited to 'src')
-rw-r--r--src/libstore/store.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/store.hh b/src/libstore/store.hh
index bcaea401e260..bcf11ce96318 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<Substitute> Substitutes;