managers/helpers: add missing includes (#11969)
* managers: include string header Fixes error `implicit instantiation of undefined template 'std::basic_string<char>'` on llvm/musl * helpers: include unistd header Fixes error `use of undeclared identifier 'pipe'` on llvm/musl
This commit is contained in:
parent
ba24547d3d
commit
0dc45b54f3
2 changed files with 2 additions and 0 deletions
|
|
@ -1,6 +1,7 @@
|
|||
#include "MainLoopExecutor.hpp"
|
||||
#include "../managers/eventLoop/EventLoopManager.hpp"
|
||||
#include "../macros.hpp"
|
||||
#include <unistd.h>
|
||||
|
||||
static int onDataRead(int fd, uint32_t mask, void* data) {
|
||||
((CMainLoopExecutor*)data)->onFired();
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include "../../helpers/memory/Memory.hpp"
|
||||
#include "../../desktop/DesktopTypes.hpp"
|
||||
#include <string>
|
||||
|
||||
class CDesktopAnimationManager {
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue