Skip to content

Commit

Permalink
Merge pull request #23920 from mlauss2/gcc14-fix
Browse files Browse the repository at this point in the history
add missing c++ headers
  • Loading branch information
enen92 committed Oct 14, 2023
2 parents 146f363 + 3dcea03 commit d4c1fcd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions xbmc/addons/AddonUpdateRules.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
#include "addons/addoninfo/AddonInfo.h"
#include "utils/log.h"

#include <algorithm>
#include <mutex>

using namespace ADDON;
Expand Down
1 change: 1 addition & 0 deletions xbmc/addons/binary-addons/AddonDll.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
#include "utils/Variant.h"
#include "utils/log.h"

#include <algorithm>
#include <utility>

using namespace KODI::MESSAGING;
Expand Down
2 changes: 2 additions & 0 deletions xbmc/interfaces/json-rpc/TextureOperations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#include "TextureDatabase.h"
#include "utils/Variant.h"

#include <algorithm>

using namespace JSONRPC;

JSONRPC_STATUS CTextureOperations::GetTextures(const std::string &method, ITransportLayer *transport, IClient *client, const CVariant &parameterObject, CVariant &result)
Expand Down
1 change: 1 addition & 0 deletions xbmc/utils/EGLImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
#include "utils/StringUtils.h"
#include "utils/log.h"

#include <algorithm>
#include <map>

namespace
Expand Down
1 change: 1 addition & 0 deletions xbmc/windowing/gbm/drm/DRMConnector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "utils/XTimeUtils.h"
#include "utils/log.h"

#include <algorithm>
#include <map>

using namespace KODI::WINDOWING::GBM;
Expand Down
2 changes: 2 additions & 0 deletions xbmc/windowing/gbm/drm/DRMPlane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
#include "utils/StringUtils.h"
#include "utils/log.h"

#include <algorithm>

using namespace KODI::WINDOWING::GBM;

CDRMPlane::CDRMPlane(int fd, uint32_t plane) : CDRMObject(fd), m_plane(drmModeGetPlane(m_fd, plane))
Expand Down

0 comments on commit d4c1fcd

Please sign in to comment.