Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
medialibrary
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
34
Issues
34
List
Boards
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
medialibrary
Commits
00a6145a
Commit
00a6145a
authored
Mar 15, 2016
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fs: Factory: Remove useless user defined constructor
parent
0dc6a04f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
src/factory/FileSystem.cpp
src/factory/FileSystem.cpp
+0
-4
src/factory/FileSystem.h
src/factory/FileSystem.h
+0
-1
No files found.
src/factory/FileSystem.cpp
View file @
00a6145a
...
...
@@ -39,10 +39,6 @@
namespace
factory
{
FileSystemFactory
::
FileSystemFactory
()
{
}
std
::
shared_ptr
<
fs
::
IDirectory
>
FileSystemFactory
::
createDirectory
(
const
std
::
string
&
path
)
{
std
::
lock_guard
<
std
::
mutex
>
lock
(
m_mutex
);
...
...
src/factory/FileSystem.h
View file @
00a6145a
...
...
@@ -33,7 +33,6 @@ namespace factory
class
FileSystemFactory
:
public
IFileSystem
{
public:
FileSystemFactory
();
virtual
std
::
shared_ptr
<
fs
::
IDirectory
>
createDirectory
(
const
std
::
string
&
path
)
override
;
virtual
std
::
shared_ptr
<
fs
::
IDevice
>
createDevice
(
const
std
::
string
&
uuid
)
override
;
virtual
void
refresh
()
override
;
...
...
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