Fix a few more miscellaneous (harmless) Clang warnings.

This commit is contained in:
Augustin Cavalier
2017-12-02 00:12:51 -05:00
parent d3eba978d3
commit 2b1481f0dc
3 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@
#endif #endif
struct media_node; class media_node;
#define B_MEDIA_NAME_LENGTH 64 #define B_MEDIA_NAME_LENGTH 64
@@ -361,7 +361,7 @@ private:
private: private:
friend class TreeIterator; friend class TreeIterator;
friend class CachedNode; friend class CachedNode;
friend class TreeCheck; friend struct TreeCheck;
Inode* fStream; Inode* fStream;
bplustree_header fHeader; bplustree_header fHeader;
@@ -81,10 +81,11 @@ struct avformat_codec_context {
// profiling related globals // profiling related globals
#define DO_PROFILING 0 #define DO_PROFILING 0
#if DO_PROFILING
static bigtime_t decodingTime = 0; static bigtime_t decodingTime = 0;
static bigtime_t conversionTime = 0; static bigtime_t conversionTime = 0;
static long profileCounter = 0; static long profileCounter = 0;
#endif
AVCodecDecoder::AVCodecDecoder() AVCodecDecoder::AVCodecDecoder()