]> git.sesse.net Git - vlc/commitdiff
dash: MPD: Removing useless CTOR
authorHugo Beauzée-Luyssen <beauze.h@gmail.com>
Thu, 24 Nov 2011 11:09:15 +0000 (12:09 +0100)
committerRémi Denis-Courmont <remi@remlab.net>
Thu, 24 Nov 2011 17:03:39 +0000 (19:03 +0200)
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
modules/stream_filter/dash/mpd/MPD.cpp
modules/stream_filter/dash/mpd/MPD.h

index ce11efc0ea0bbf41d490262b6bd9e1570448f53e..06843daaa7a1dc766b989f9ed68f7472f272e5ea 100644 (file)
@@ -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++)
index bb2f1d19fe111dc0240f9ea5a7dd99eae8d99068..f73d1dd42d917435a62126b4908c856ed12de4fa 100644 (file)
@@ -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);