fs_mgr: IWYU include <algorithm> for std::sort

GCC 14 starts to no longer include <algorithm> by default, resulting in
it needing to be explicitly declared.

Test: Recompiled with GCC 14 and succeeded

Change-Id: Ifc5dd58b7476ba728ae604cd2924cb68fbcab701
Signed-off-by: Christopher Fore <csfore@posteo.net>
This commit is contained in:
Christopher Fore 2023-11-20 15:19:12 -05:00
parent 142f8129ec
commit fad8b7a130
2 changed files with 3 additions and 0 deletions

View file

@ -17,6 +17,8 @@
#include <liblp/liblp.h>
#include <algorithm>
#include "images.h"
#include "utility.h"
#include "writer.h"

View file

@ -25,6 +25,7 @@
#include <sys/ioctl.h>
#endif
#include <algorithm>
#include <map>
#include <string>
#include <vector>