[vlc-commits] dash: MPD: Removing useless CTOR
Hugo Beauzée-Luyssen
git at videolan.org
Thu Nov 24 18:04:13 CET 2011
vlc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Thu Nov 24 12:09:15 2011 +0100| [674fe3654d880fb3f8775db989fd0bec74c95c26] | committer: Rémi Denis-Courmont
dash: MPD: Removing useless CTOR
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=674fe3654d880fb3f8775db989fd0bec74c95c26
---
modules/stream_filter/dash/mpd/MPD.cpp | 3 ---
modules/stream_filter/dash/mpd/MPD.h | 1 -
2 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/modules/stream_filter/dash/mpd/MPD.cpp b/modules/stream_filter/dash/mpd/MPD.cpp
index ce11efc..06843da 100644
--- a/modules/stream_filter/dash/mpd/MPD.cpp
+++ b/modules/stream_filter/dash/mpd/MPD.cpp
@@ -35,10 +35,7 @@ MPD::MPD (std::map<std::string, std::string> attributes)
this->attributes = attributes;
this->programInfo = NULL;
}
-MPD::MPD ()
-{
-}
MPD::~MPD ()
{
for(size_t i = 0; i < this->periods.size(); i++)
diff --git a/modules/stream_filter/dash/mpd/MPD.h b/modules/stream_filter/dash/mpd/MPD.h
index bb2f1d1..f73d1dd 100644
--- a/modules/stream_filter/dash/mpd/MPD.h
+++ b/modules/stream_filter/dash/mpd/MPD.h
@@ -45,7 +45,6 @@ namespace dash
public:
MPD (std::map<std::string, std::string> attributes);
- MPD ();
virtual ~MPD();
const std::string& getType () const throw(dash::exception::AttributeNotPresentException);
More information about the vlc-commits
mailing list