You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/build/source/include/hal_core/utilities/utils.h:84:18: error: 'sort' is not a member of 'std'; did you mean 'qsort'?
84 | std::sort(vec_1.begin(), vec_1.end());
| ^~~~
| qsort
/build/source/include/hal_core/utilities/utils.h:85:18: error: 'sort' is not a member of 'std'; did you mean 'qsort'?
85 | std::sort(vec_2.begin(), vec_2.end());
| ^~~~
| qsort
/build/source/include/hal_core/utilities/utils.h: In function 'bool hal::utils::is_digits(const T&)':
/build/source/include/hal_core/utilities/utils.h:187:25: error: 'all_of' is not a member of 'std'
187 | return std::all_of(s.begin(), s.end(), ::isdigit);
| ^~~~~~
/build/source/include/hal_core/utilities/utils.h: In function 'T hal::utils::to_upper(const T&)':
/build/source/include/hal_core/utilities/utils.h:465:18: error: 'transform' is not a member of 'std'
465 | std::transform(result.begin(), result.end(), result.begin(), [](char c) { return std::toupper(c); });
| ^~~~~~~~~
/build/source/include/hal_core/utilities/utils.h: In function 'T hal::utils::to_lower(const T&)':
/build/source/include/hal_core/utilities/utils.h:479:18: error: 'transform' is not a member of 'std'
479 | std::transform(result.begin(), result.end(), result.begin(), [](char c) { return std::tolower(c); });
| ^~~~~~~~~
including <algorithm> in utils.h fixes the build
version: 4.4.1
The text was updated successfully, but these errors were encountered:
Describe the bug
log
including
<algorithm>
inutils.h
fixes the buildversion: 4.4.1
The text was updated successfully, but these errors were encountered: