forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
monotone-1.0-gcc6.patch
64 lines (55 loc) · 1.98 KB
/
monotone-1.0-gcc6.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Bug: https://bugs.gentoo.org/594538
--- a/src/cache_logger.hh
+++ b/src/cache_logger.hh
@@ -23,7 +23,7 @@
// if given the empty filename, do nothing
explicit cache_logger(std::string const & filename, int max_size);
- bool logging() const { return _impl; }
+ bool logging() const { return static_cast<bool>(_impl); }
void log_exists(bool exists, int position, int item_count, int est_size) const;
void log_touch(bool exists, int position, int item_count, int est_size) const;
--- a/src/cmd_ws_commit.cc
+++ b/src/cmd_ws_commit.cc
@@ -1170,7 +1170,7 @@
{
for (attr_map_t::iterator i = node->attrs.begin();
i != node->attrs.end(); ++i)
- i->second = make_pair(false, "");
+ i->second = make_pair(false, attr_value(""));
}
else
{
@@ -1179,7 +1179,7 @@
E(node->attrs.find(a_key) != node->attrs.end(), origin::user,
F("path '%s' does not have attribute '%s'")
% path % a_key);
- node->attrs[a_key] = make_pair(false, "");
+ node->attrs[a_key] = make_pair(false, attr_value(""));
}
cset cs;
--- a/src/roster.cc
+++ b/src/roster.cc
@@ -223,7 +223,7 @@
bool marking_map::contains(node_id nid) const
{
- return _store.get_if_present(nid);
+ return static_cast<bool>(_store.get_if_present(nid));
}
void marking_map::remove_marking(node_id nid)
@@ -727,7 +727,7 @@
bool
roster_t::has_node(node_id n) const
{
- return nodes.get_if_present(n);
+ return static_cast<bool>(nodes.get_if_present(n));
}
bool
@@ -1898,8 +1898,8 @@
node_t const &left_node = left_roster.all_nodes().get_if_present(i->first);
node_t const &right_node = right_roster.all_nodes().get_if_present(i->first);
- bool exists_in_left = (left_node);
- bool exists_in_right = (right_node);
+ bool exists_in_left = static_cast<bool>(left_node);
+ bool exists_in_right = static_cast<bool>(right_node);
if (!exists_in_left && !exists_in_right)
mark_new_node(new_rid, n, new_markings);