We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 965ec63 commit ac56230Copy full SHA for ac56230
tiledb/sm/filesystem/uri.cc
@@ -211,7 +211,8 @@ bool URI::is_timestamped_name() const {
211
std::string t2 =
212
part.substr(t1_separator + 1, t2_separator - t1_separator - 1);
213
for (const auto& t : {t1, t2}) {
214
- if (!std::ranges::all_of(t, [](const char c) { return std::isdigit(c); })) {
+ if (!std::all_of(
215
+ t.begin(), t.end(), [](const char c) { return std::isdigit(c); })) {
216
return false;
217
}
218
0 commit comments