remove a redundant member function that I added before
[c11tester.git] / execution.cc
index 9ee915708edd18550266126af75ad746c8f3544e..524c6fa2f2dded24e3421f533c88bb55a621fb6e 100644 (file)
@@ -199,16 +199,6 @@ bool ModelExecution::have_bug_reports() const
        return priv->bugs.size() != 0;
 }
 
-/** @return True, if any fatal bugs have been reported for this execution.
- *  Any bug other than a data race is considered a fatal bug. Data races
- *  are not considered fatal unless the number of races is exceeds
- *  a threshold (temporarily set as 15).
- */
-bool ModelExecution::have_fatal_bug_reports() const
-{
-       return priv->bugs.size() != 0;
-}
-
 SnapVector<bug_message *> * ModelExecution::get_bugs() const
 {
        return &priv->bugs;