You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by ab...@apache.org on 2020/03/25 07:28:44 UTC

[celix] branch feature/pubsub_inteceptors updated: Added missing include for GCC

This is an automated email from the ASF dual-hosted git repository.

abroekhuis pushed a commit to branch feature/pubsub_inteceptors
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to refs/heads/feature/pubsub_inteceptors by this push:
     new 633f653  Added missing include for GCC
633f653 is described below

commit 633f65313a8860007f96a408fec9439a0fb36e6c
Author: Alexander Broekhuis <al...@luminis.eu>
AuthorDate: Wed Mar 25 08:28:35 2020 +0100

    Added missing include for GCC
---
 bundles/pubsub/pubsub_spi/include/pubsub_interceptor.h          | 1 +
 bundles/pubsub/pubsub_spi/include/pubsub_interceptors_handler.h | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/bundles/pubsub/pubsub_spi/include/pubsub_interceptor.h b/bundles/pubsub/pubsub_spi/include/pubsub_interceptor.h
index 57765ee..aaef173 100644
--- a/bundles/pubsub/pubsub_spi/include/pubsub_interceptor.h
+++ b/bundles/pubsub/pubsub_spi/include/pubsub_interceptor.h
@@ -21,6 +21,7 @@
 #define __PUBSUB_INTERCEPTOR_H
 
 #include <stdlib.h>
+#include <stdint.h>
 
 #include "celix_properties.h"
 
diff --git a/bundles/pubsub/pubsub_spi/include/pubsub_interceptors_handler.h b/bundles/pubsub/pubsub_spi/include/pubsub_interceptors_handler.h
index 60461f8..7d9869b 100644
--- a/bundles/pubsub/pubsub_spi/include/pubsub_interceptors_handler.h
+++ b/bundles/pubsub/pubsub_spi/include/pubsub_interceptors_handler.h
@@ -19,6 +19,8 @@
 #ifndef PUBSUB_INTERCEPTORS_HANDLER_H
 #define PUBSUB_INTERCEPTORS_HANDLER_H
 
+#include <stdint.h>
+
 #include "celix_errno.h"
 #include "celix_array_list.h"
 #include "pubsub_interceptor.h"