Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
medialibrary
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
57
Issues
57
List
Boards
Labels
Service Desk
Milestones
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
medialibrary
Commits
cea9e956
Commit
cea9e956
authored
May 24, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix warnings on clang
parent
6ce66e45
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
src/Album.h
src/Album.h
+1
-1
src/AlbumTrack.h
src/AlbumTrack.h
+1
-1
src/File.h
src/File.h
+1
-1
src/Label.h
src/Label.h
+1
-1
src/Show.h
src/Show.h
+1
-1
src/ShowEpisode.h
src/ShowEpisode.h
+1
-1
No files found.
src/Album.h
View file @
cea9e956
...
...
@@ -53,7 +53,7 @@ class Album : public IAlbum, public Cache<Album, IAlbum, policy::AlbumTable>
std
::
string
m_id3tag
;
friend
class
Cache
<
Album
,
IAlbum
,
policy
::
AlbumTable
>
;
friend
class
policy
::
AlbumTable
;
friend
struct
policy
::
AlbumTable
;
};
#endif // ALBUM_H
src/AlbumTrack.h
View file @
cea9e956
...
...
@@ -50,7 +50,7 @@ class AlbumTrack : public IAlbumTrack, public Cache<AlbumTrack, IAlbumTrack, pol
std
::
shared_ptr
<
Album
>
m_album
;
friend
class
Cache
<
AlbumTrack
,
IAlbumTrack
,
policy
::
AlbumTrackTable
>
;
friend
class
policy
::
AlbumTrackTable
;
friend
struct
policy
::
AlbumTrackTable
;
};
#endif // ALBUMTRACK_H
src/File.h
View file @
cea9e956
...
...
@@ -74,7 +74,7 @@ class File : public IFile, public Cache<File, IFile, policy::FileTable, policy::
std
::
shared_ptr
<
ShowEpisode
>
m_showEpisode
;
friend
class
Cache
<
File
,
IFile
,
policy
::
FileTable
,
policy
::
FileCache
>
;
friend
class
policy
::
FileTable
;
friend
struct
policy
::
FileTable
;
};
#endif // FILE_H
src/Label.h
View file @
cea9e956
...
...
@@ -49,7 +49,7 @@ class Label : public ILabel, public Cache<Label, ILabel, policy::LabelTable, pol
std
::
string
m_name
;
friend
class
Cache
<
Label
,
ILabel
,
policy
::
LabelTable
>
;
friend
class
policy
::
LabelTable
;
friend
struct
policy
::
LabelTable
;
};
#endif // LABEL_H
src/Show.h
View file @
cea9e956
...
...
@@ -44,7 +44,7 @@ class Show : public IShow, public Cache<Show, IShow, policy::ShowTable>
std
::
string
m_tvdbId
;
friend
class
Cache
<
Show
,
IShow
,
policy
::
ShowTable
>
;
friend
class
policy
::
ShowTable
;
friend
struct
policy
::
ShowTable
;
};
#endif // SHOW_H
src/ShowEpisode.h
View file @
cea9e956
...
...
@@ -50,7 +50,7 @@ class ShowEpisode : public IShowEpisode, public Cache<ShowEpisode, IShowEpisode,
std
::
shared_ptr
<
Show
>
m_show
;
friend
class
Cache
<
ShowEpisode
,
IShowEpisode
,
policy
::
ShowEpisodeTable
>
;
friend
class
policy
::
ShowEpisodeTable
;
friend
struct
policy
::
ShowEpisodeTable
;
};
#endif // SHOWEPISODE_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment