[1/2] include/libcamera/base/file.h: add missing <stdint.h> include
diff mbox series

Message ID 20240804060400.2790695-1-slyich@gmail.com
State New
Headers show
Series
  • [1/2] include/libcamera/base/file.h: add missing <stdint.h> include
Related show

Commit Message

Sergei Trofimovich Aug. 4, 2024, 6:03 a.m. UTC
Without the change the build fails on upcoming `gcc-15` as:

    In file included from ../src/libcamera/base/file.cpp:8:
    ../include/libcamera/base/file.h:62:33: error: 'uint8_t' was not declared in this scope
       62 |         ssize_t read(const Span<uint8_t> &data);
          |                                 ^~~~~~~
---
 include/libcamera/base/file.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Laurent Pinchart Aug. 4, 2024, 11:43 a.m. UTC | #1
Hi Sergei,

Thank you for the patch.

The subject line should read

"libcamera: base: file: Add missing <stdint.h> include"

to match the usual style.

On Sun, Aug 04, 2024 at 07:03:59AM +0100, Sergei Trofimovich wrote:
> Without the change the build fails on upcoming `gcc-15` as:
> 
>     In file included from ../src/libcamera/base/file.cpp:8:
>     ../include/libcamera/base/file.h:62:33: error: 'uint8_t' was not declared in this scope
>        62 |         ssize_t read(const Span<uint8_t> &data);
>           |                                 ^~~~~~~

Much more importantly, the commit message is missing your Signed-off-by
line. See https://libcamera.org/contributing.html#submitting-patches

If it were just for the subject line I would change it myself before
applying the patch, but the missing SoB will require a v2 I'm afraid.

These comments apply to patch 2/2 too.

> ---
>  include/libcamera/base/file.h | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/include/libcamera/base/file.h b/include/libcamera/base/file.h
> index 5637934c..192668ab 100644
> --- a/include/libcamera/base/file.h
> +++ b/include/libcamera/base/file.h
> @@ -7,6 +7,7 @@
>  
>  #pragma once
>  
> +#include <stdint.h>
>  #include <sys/types.h>
>  
>  #include <map>

It looks like sys/types.h was added in the wrong place. Could you, while
at it, fix that so that all the C and C++ standard includes are grouped
together ? It should look like

#include <map>
#include <stdint.h>
#include <string>
#include <sys/types.h>
Sergei Trofimovich Aug. 9, 2024, 9:15 p.m. UTC | #2
On Sun, 4 Aug 2024 14:43:36 +0300
Laurent Pinchart <laurent.pinchart@ideasonboard.com> wrote:

> Hi Sergei,
> 
> Thank you for the patch.
> 
> The subject line should read
> 
> "libcamera: base: file: Add missing <stdint.h> include"
> 
> to match the usual style.
> 
> On Sun, Aug 04, 2024 at 07:03:59AM +0100, Sergei Trofimovich wrote:
> > Without the change the build fails on upcoming `gcc-15` as:
> > 
> >     In file included from ../src/libcamera/base/file.cpp:8:
> >     ../include/libcamera/base/file.h:62:33: error: 'uint8_t' was not declared in this scope
> >        62 |         ssize_t read(const Span<uint8_t> &data);
> >           |                                 ^~~~~~~  
> 
> Much more importantly, the commit message is missing your Signed-off-by
> line. See https://libcamera.org/contributing.html#submitting-patches
> 
> If it were just for the subject line I would change it myself before
> applying the patch, but the missing SoB will require a v2 I'm afraid.
> 
> These comments apply to patch 2/2 too.

Thank you, Laurent! Recent both as a follow up with tweaked subject and
added SOB a few days ago as:

    https://lists.libcamera.org/pipermail/libcamera-devel/2024-August/043744.html

> > ---
> >  include/libcamera/base/file.h | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/include/libcamera/base/file.h b/include/libcamera/base/file.h
> > index 5637934c..192668ab 100644
> > --- a/include/libcamera/base/file.h
> > +++ b/include/libcamera/base/file.h
> > @@ -7,6 +7,7 @@
> >  
> >  #pragma once
> >  
> > +#include <stdint.h>
> >  #include <sys/types.h>
> >  
> >  #include <map>  
> 
> It looks like sys/types.h was added in the wrong place. Could you, while
> at it, fix that so that all the C and C++ standard includes are grouped
> together ? It should look like
> 
> #include <map>
> #include <stdint.h>
> #include <string>
> #include <sys/types.h>
> 
> -- 
> Regards,
> 
> Laurent Pinchart
Laurent Pinchart Aug. 9, 2024, 10:05 p.m. UTC | #3
On Fri, Aug 09, 2024 at 10:15:22PM +0100, Sergei Trofimovich wrote:
> On Sun, 4 Aug 2024 14:43:36 +0300 Laurent Pinchart wrote:
> 
> > Hi Sergei,
> > 
> > Thank you for the patch.
> > 
> > The subject line should read
> > 
> > "libcamera: base: file: Add missing <stdint.h> include"
> > 
> > to match the usual style.
> > 
> > On Sun, Aug 04, 2024 at 07:03:59AM +0100, Sergei Trofimovich wrote:
> > > Without the change the build fails on upcoming `gcc-15` as:
> > > 
> > >     In file included from ../src/libcamera/base/file.cpp:8:
> > >     ../include/libcamera/base/file.h:62:33: error: 'uint8_t' was not declared in this scope
> > >        62 |         ssize_t read(const Span<uint8_t> &data);
> > >           |                                 ^~~~~~~  
> > 
> > Much more importantly, the commit message is missing your Signed-off-by
> > line. See https://libcamera.org/contributing.html#submitting-patches
> > 
> > If it were just for the subject line I would change it myself before
> > applying the patch, but the missing SoB will require a v2 I'm afraid.
> > 
> > These comments apply to patch 2/2 too.
> 
> Thank you, Laurent! Recent both as a follow up with tweaked subject and
> added SOB a few days ago as:
> 
>     https://lists.libcamera.org/pipermail/libcamera-devel/2024-August/043744.html

I've reviewed v2, and I'll push it early next week.

> > > ---
> > >  include/libcamera/base/file.h | 1 +
> > >  1 file changed, 1 insertion(+)
> > > 
> > > diff --git a/include/libcamera/base/file.h b/include/libcamera/base/file.h
> > > index 5637934c..192668ab 100644
> > > --- a/include/libcamera/base/file.h
> > > +++ b/include/libcamera/base/file.h
> > > @@ -7,6 +7,7 @@
> > >  
> > >  #pragma once
> > >  
> > > +#include <stdint.h>
> > >  #include <sys/types.h>
> > >  
> > >  #include <map>  
> > 
> > It looks like sys/types.h was added in the wrong place. Could you, while
> > at it, fix that so that all the C and C++ standard includes are grouped
> > together ? It should look like
> > 
> > #include <map>
> > #include <stdint.h>
> > #include <string>
> > #include <sys/types.h>

Patch
diff mbox series

diff --git a/include/libcamera/base/file.h b/include/libcamera/base/file.h
index 5637934c..192668ab 100644
--- a/include/libcamera/base/file.h
+++ b/include/libcamera/base/file.h
@@ -7,6 +7,7 @@ 
 
 #pragma once
 
+#include <stdint.h>
 #include <sys/types.h>
 
 #include <map>