comparison Platforms/Generic/Oracle.cpp @ 547:0f43e479b49c ct-pet-dose-struct

Removed old rtstruct demo (correct one on its way) + Many warning fixes (mostly 64-bit ?) + reformat + small fixes + indent (breaking long lines)
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 02 Apr 2019 11:54:28 +0200
parents b70e9be013e4
children 4f2416d519b4
comparison
equal deleted inserted replaced
546:fb7f4a5bdfc0 547:0f43e479b49c
68 IOracleCommand& command = dynamic_cast<IOracleCommand&>(*item); 68 IOracleCommand& command = dynamic_cast<IOracleCommand&>(*item);
69 try 69 try
70 { 70 {
71 command.Execute(); 71 command.Execute();
72 } 72 }
73 catch (Orthanc::OrthancException& ex) 73 catch (Orthanc::OrthancException& /*ex*/)
74 { 74 {
75 // this is probably a curl error that has been triggered. We may just ignore it. 75 // this is probably a curl error that has been triggered. We may just ignore it.
76 // The command.success_ will stay at false and this will be handled in the command.Commit 76 // The command.success_ will stay at false and this will be handled in the command.Commit
77 } 77 }
78 78