Changeset cade17 in git
- Timestamp:
- Feb 18, 2015, 11:38:00 AM (9 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- a294d26f9967f3b94f4040cd3991ef2561323a5a
- Parents:
- 9f7a9cd448041b035d092b0dcf11b4d5f14ac002
- Location:
- Singular/dyn_modules/gfanlib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/dyn_modules/gfanlib/tropical.cc
r9f7a9c rcade17 245 245 catch (const std::exception& ex) 246 246 { 247 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");247 Werror("ERROR: %s",ex.what()); 248 248 return TRUE; 249 249 } … … 279 279 catch (const std::exception& ex) 280 280 { 281 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");281 Werror("ERROR: %s",ex.what()); 282 282 return TRUE; 283 283 } … … 338 338 catch (const std::exception& ex) 339 339 { 340 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");340 Werror("ERROR: %s",ex.what()); 341 341 return TRUE; 342 342 } … … 357 357 catch (const std::exception& ex) 358 358 { 359 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");359 Werror("ERROR: %s",ex.what()); 360 360 return TRUE; 361 361 } … … 425 425 catch (const std::exception& ex) 426 426 { 427 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");427 Werror("ERROR: %s",ex.what()); 428 428 return TRUE; 429 429 } -
Singular/dyn_modules/gfanlib/tropicalVariety.cc
r9f7a9c rcade17 66 66 catch (const std::exception& ex) 67 67 { 68 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");68 Werror("ERROR: %s",ex.what()); 69 69 return TRUE; 70 70 } … … 90 90 catch (const std::exception& ex) 91 91 { 92 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");92 Werror("ERROR: %s",ex.what()); 93 93 return TRUE; 94 94 } … … 116 116 catch (const std::exception& ex) 117 117 { 118 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");118 Werror("ERROR: %s",ex.what()); 119 119 return TRUE; 120 120 } … … 136 136 catch (const std::exception& ex) 137 137 { 138 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");138 Werror("ERROR: %s",ex.what()); 139 139 return TRUE; 140 140 } … … 162 162 catch (const std::exception& ex) 163 163 { 164 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");164 Werror("ERROR: %s",ex.what()); 165 165 return TRUE; 166 166 } … … 185 185 catch (const std::exception& ex) 186 186 { 187 Werror S("ERROR: "); WerrorS(ex.what()); WerrorS("\n");187 Werror("ERROR: %s",ex.what()); 188 188 return TRUE; 189 189 }
Note: See TracChangeset
for help on using the changeset viewer.