From d1d3e057ca370849da407ce8489f074fa5726630 Mon Sep 17 00:00:00 2001 From: apn Date: Thu, 2 Feb 2017 19:01:54 +0300 Subject: [PATCH] Warning on windows in QABugs_11.cxx was eliminated --- src/QABugs/QABugs_11.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/QABugs/QABugs_11.cxx b/src/QABugs/QABugs_11.cxx index 5896d3b608..8895b28d4b 100644 --- a/src/QABugs/QABugs_11.cxx +++ b/src/QABugs/QABugs_11.cxx @@ -2620,10 +2620,10 @@ static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, co catch(OSD_Exception_STACK_OVERFLOW) { di << "Caught, OK\n"; } - catch(Standard_Failure) { + catch(Standard_Failure const& anException) { //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl; di << " Caught ("; - di << Standard_Failure::Caught()->GetMessageString(); + di << anException.GetMessageString(); di << ")... KO\n"; Succes = Standard_False; }