Skip to content

Commit

Permalink
utils.h: add missing include (#603)
Browse files Browse the repository at this point in the history
std::sort is defined in the algorithm header.
  • Loading branch information
FliegendeWurst authored Jan 21, 2025
1 parent 6778242 commit a2ff63b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/hal_core/utilities/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#include "hal_core/defines.h"
#include "hal_core/utilities/result.h"

#include <algorithm>
#include <functional>
#include <set>
#include <sstream>
Expand Down Expand Up @@ -808,4 +809,4 @@ namespace hal
*/
CORE_API Result<u32> wrapped_stoul(const std::string& s, const u32 base = 10);
} // namespace utils
} // namespace hal
} // namespace hal

0 comments on commit a2ff63b

Please sign in to comment.