[haiku-commits] haiku: hrev52274 - headers/os/media

  • From: Barrett17 <b.vitruvio@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Sat, 25 Aug 2018 11:23:54 -0400 (EDT)

hrev52274 adds 1 changeset to branch 'master'
old head: b2e0398cd4e9df66122a5b03ea6d880b1893db58
new head: 992ba1a5ceea56f1012db18fd7f6833a7c42ef9c
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=992ba1a5ceea+%5Eb2e0398cd4e9

----------------------------------------------------------------------------

992ba1a5ceea: Media Kit: Fix -Wmismatched-tags
  
  Replace struct with class, since it is previously declared as a class
  in SharedBufferList.h
  Pointed by clang  [-Wmismatched-tags]
  
  Change-Id: I3ff4e285862f31a2088a773be2967102bc8b18b6
  Reviewed-on: https://review.haiku-os.org/480
  Reviewed-by: Barrett17 <b.vitruvio@xxxxxxxxx>

                                      [ Murai Takashi <tmurai01@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev52274
Commit:      992ba1a5ceea56f1012db18fd7f6833a7c42ef9c
URL:         https://git.haiku-os.org/haiku/commit/?id=992ba1a5ceea
Author:      Murai Takashi <tmurai01@xxxxxxxxx>
Date:        Sat Aug 25 08:40:09 2018 UTC
Committer:   Barrett17 <b.vitruvio@xxxxxxxxx>
Commit-Date: Sat Aug 25 15:23:52 2018 UTC

----------------------------------------------------------------------------

1 file changed, 2 insertions(+), 2 deletions(-)
headers/os/media/BufferGroup.h | 4 ++--

----------------------------------------------------------------------------

diff --git a/headers/os/media/BufferGroup.h b/headers/os/media/BufferGroup.h
index 8a88db50b1..174156eb96 100644
--- a/headers/os/media/BufferGroup.h
+++ b/headers/os/media/BufferGroup.h
@@ -11,7 +11,7 @@
 
 class BBuffer;
 namespace BPrivate {
-       struct SharedBufferList;
+       class SharedBufferList;
 }
 
 
@@ -55,7 +55,7 @@ private:
                        status_t                _Init();
 
 private:
-       friend struct BPrivate::SharedBufferList;
+       friend class BPrivate::SharedBufferList;
 
                        status_t                fInitError;
                        status_t                fRequestError;


Other related posts:

  • » [haiku-commits] haiku: hrev52274 - headers/os/media - Barrett17