Message ID | 20201020091505.138898-5-hiroh@chromium.org |
---|---|
State | Accepted |
Commit | 4ba2a3380964e6e9d7ba352b483751c1c61d4c68 |
Headers | show |
Series |
|
Related | show |
Hi Hiro-san, Thank you for the patch. On Tue, Oct 20, 2020 at 06:15:02PM +0900, Hirokazu Honda wrote: > This removes the unnecessary semicolon in span.h. > > Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> > --- > include/libcamera/span.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/libcamera/span.h b/include/libcamera/span.h > index a53a80b..c0e4399 100644 > --- a/include/libcamera/span.h > +++ b/include/libcamera/span.h > @@ -407,6 +407,6 @@ private: > size_type size_; > }; > > -}; /* namespace libcamera */ > +} /* namespace libcamera */ > > #endif /* __LIBCAMERA_SPAN_H__ */
diff --git a/include/libcamera/span.h b/include/libcamera/span.h index a53a80b..c0e4399 100644 --- a/include/libcamera/span.h +++ b/include/libcamera/span.h @@ -407,6 +407,6 @@ private: size_type size_; }; -}; /* namespace libcamera */ +} /* namespace libcamera */ #endif /* __LIBCAMERA_SPAN_H__ */
This removes the unnecessary semicolon in span.h. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> --- include/libcamera/span.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)