Skip to content

Commit bb826d3

Browse files
Trivial change for buildbot
1 parent 682f392 commit bb826d3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/CodeGen_C.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,11 @@ const B &return_second(const A &a, const B &b) {
142142
143143
template<typename A, typename B>
144144
inline auto quiet_div(const A &a, const B &b) -> decltype(a / b) {
145-
// Return '0' for the undefined case
146145
return b == 0 ? static_cast<decltype(a / b)>(0) : (a / b);
147146
}
148147
149148
template<typename A, typename B>
150149
inline auto quiet_mod(const A &a, const B &b) -> decltype(a % b) {
151-
// Return '0' for the undefined case
152150
return b == 0 ? static_cast<decltype(a % b)>(0) : (a % b);
153151
}
154152

0 commit comments

Comments
 (0)