Author: eadler Date: Mon Mar 4 02:21:17 2013 New Revision: 247757 URL: http://svnweb.freebsd.org/changeset/base/247757
Log: devd: Use the standard constructor of std::string instead of string(""). Submitted by: Christoph Mallon <christoph.mal...@gmx.de> Approved by: cperciva (mentor) Modified: head/sbin/devd/devd.hh Modified: head/sbin/devd/devd.hh ============================================================================== --- head/sbin/devd/devd.hh Mon Mar 4 02:21:15 2013 (r247756) +++ head/sbin/devd/devd.hh Mon Mar 4 02:21:17 2013 (r247757) @@ -144,7 +144,7 @@ private: class config { public: - config() : _pidfile("") { push_var_table(); } + config() { push_var_table(); } virtual ~config() { reset(); } void add_attach(int, event_proc *); void add_detach(int, event_proc *); _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"