diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·31+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·31+0000 |
commit | 4a266e35d4c756af6163a314585e55ecb65a4c0c (patch) | |
tree | 122b0a3c0f4d998fb998aa06b3418b8f89619b58 /src/libstore/store.hh | |
parent | d7b3cdbd9142ed702a98ebb6a3f6759410d27773 (diff) |
* GCC 2.95 compatibility fix in constness; strangely, I think this
should not have worked at all.
Diffstat (limited to 'src/libstore/store.hh')
-rw-r--r-- | src/libstore/store.hh | 2 |
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; |