svn commit: r328431 - head/sbin/devd

Eitan Adler eadler at FreeBSD.org
Fri Jan 26 05:03:38 UTC 2018


Author: eadler
Date: Fri Jan 26 05:03:37 2018
New Revision: 328431
URL: https://svnweb.freebsd.org/changeset/base/328431

Log:
  devd: readd virtual
  
  - my C++ knowledge is old and rusty. re-add virtual

Modified:
  head/sbin/devd/devd.hh

Modified: head/sbin/devd/devd.hh
==============================================================================
--- head/sbin/devd/devd.hh	Fri Jan 26 04:40:41 2018	(r328430)
+++ head/sbin/devd/devd.hh	Fri Jan 26 05:03:37 2018	(r328431)
@@ -147,7 +147,7 @@ class config
 {
 public:
 	config() { push_var_table(); }
-	~config() { reset(); }
+	virtual ~config() { reset(); }
 	void add_attach(int, event_proc *);
 	void add_detach(int, event_proc *);
 	void add_directory(const char *);


More information about the svn-src-head mailing list