From 505a972faa819c7a775a1e3ad39d63876fb2bde4 Mon Sep 17 00:00:00 2001 From: Nicolay Korslund Date: Wed, 7 Jul 2010 17:39:23 +0200 Subject: [PATCH] changed assert to a softer warning message in cell_store.hpp --- components/esm_store/cell_store.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esm_store/cell_store.hpp b/components/esm_store/cell_store.hpp index e1637b364b..444c3e1afb 100644 --- a/components/esm_store/cell_store.hpp +++ b/components/esm_store/cell_store.hpp @@ -172,7 +172,7 @@ namespace ESMS case 0: std::cout << "Cell reference " + ref.refID + " not found!\n"; break; default: - assert(0); + std::cout << "WARNING: Ignoring reference '" << ref.refID << "' of unhandled type\n"; } }