Merge pull request #497 from jbj/disable-no-virtual-destructor

C++: Remove @precision from AV Rule 78
This commit is contained in:
Geoffrey White
2018-11-20 16:44:36 +00:00
committed by GitHub

View File

@@ -3,7 +3,6 @@
* @description All base classes with a virtual function should define a virtual destructor. If an application attempts to delete a derived class object through a base class pointer, the result is undefined if the base class destructor is non-virtual.
* @kind problem
* @problem.severity warning
* @precision high
* @id cpp/jsf/av-rule-78
* @tags reliability
* readability