Skip to content

Commit

Permalink
maybe fix R 4.2 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
paleolimbot committed Jun 15, 2024
1 parent ccea510 commit eb9d21d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/vendor/abseil-cpp/absl/strings/internal/escaping.cc
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ size_t Base64EscapeInternal(const unsigned char* src, size_t szsrc, char* dest,
default:
// Should not be reached: blocks of 4 bytes are handled
// in the while loop before this switch statement.
ABSL_RAW_LOG(FATAL, "Logic problem? szsrc = %zu", szsrc);
// dd: commenting this line because it causes a CRAN check problem
// ABSL_RAW_LOG(FATAL, "Logic problem? szsrc = %zu", szsrc);
break;
}
return static_cast<size_t>(cur_dest - dest);
Expand Down

0 comments on commit eb9d21d

Please sign in to comment.