Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Mar 2013 02:21:24 +0000 (UTC)
From:      Eitan Adler <eadler@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r247760 - head/sbin/devd
Message-ID:  <201303040221.r242LO9G085066@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: eadler
Date: Mon Mar  4 02:21:24 2013
New Revision: 247760
URL: http://svnweb.freebsd.org/changeset/base/247760

Log:
  devd: Remove unnecessary empty default constructors.
  
  Submitted by:	Christoph Mallon <christoph.mallon@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:22 2013	(r247759)
+++ head/sbin/devd/devd.hh	Mon Mar  4 02:21:24 2013	(r247760)
@@ -41,7 +41,6 @@ class config;
 class var_list
 {
 public:
-	var_list() {}
 	/** Set a variable in this var list.
 	 */
 	void set_variable(const std::string &var, const std::string &val);
@@ -67,7 +66,6 @@ private:
 struct eps
 {
 public:
-	eps() {}
 	virtual ~eps() {}
 	/** Does this eps match the current config?
 	 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303040221.r242LO9G085066>