File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -571,8 +571,8 @@ struct DEBUG_NODISCARD debug {
571
571
: std::true_type {};
572
572
DEBUG_COND (is_ostream_ok, std::declval<std::ostream &>()
573
573
<< std::declval<T const &>());
574
- DEBUG_COND (is_range, begin(std::declval<T const &>()) !=
575
- end(std::declval<T const &>()));
574
+ DEBUG_COND (is_range, std:: begin(std::declval<T const &>()) !=
575
+ std:: end(std::declval<T const &>()));
576
576
DEBUG_COND (is_tuple, std::tuple_size<T>::value);
577
577
DEBUG_COND (is_member_repr, std::declval<T const &>().DEBUG_REPR_NAME());
578
578
DEBUG_COND (is_member_repr_stream, std::declval<T const &>().DEBUG_REPR_NAME(
@@ -918,8 +918,8 @@ struct DEBUG_NODISCARD debug {
918
918
void operator ()(std::ostream &oss, T const &t) const {
919
919
oss << DEBUG_RANGE_BRACE[0 ];
920
920
bool add_comma = false ;
921
- auto b = begin (t);
922
- auto e = end (t);
921
+ auto b = std:: begin (t);
922
+ auto e = std:: end (t);
923
923
for (auto it = b; it != e; ++it) {
924
924
if (add_comma) {
925
925
oss << DEBUG_RANGE_COMMA;
You can’t perform that action at this time.
0 commit comments