blob: d7391f33841ef68491d4d7f0e45f12a014b646e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-src_qalculate__kde__utils.h,v 1.1 2013/05/12 19:16:01 joerg Exp $
--- src/qalculate_kde_utils.h.orig 2013-05-12 18:16:41.000000000 +0000
+++ src/qalculate_kde_utils.h
@@ -46,7 +46,7 @@ struct tree_struct {
it->sort();
}
}
- bool operator < (tree_struct &s1) const {
+ bool operator < (const tree_struct &s1) const {
return item < s1.item;
}
};
|