Skip to content

Commit

Permalink
src/ipc.h: Include <stdint.h> for uint32_t
Browse files Browse the repository at this point in the history
Without this the build fails with the upcoming gcc 15:

In file included from ../wpebackend-fdo-1.14.2/src/ipc.cpp:26:
../wpebackend-fdo-1.14.2/src/ipc.h:36:36: error: 'uint32_t' has not been declared
   36 |     virtual void didReceiveMessage(uint32_t messageId, uint32_t messageBody) = 0

(cherry picked from commit 923ebd6)
  • Loading branch information
heirecka authored and aperezdc committed Jan 18, 2025
1 parent 04ccf2e commit 4789869
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ipc.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#pragma once

#include <gio/gio.h>
#include <stdint.h>
#include <memory>

namespace FdoIPC {
Expand Down

0 comments on commit 4789869

Please sign in to comment.