Removed usaged of throw and catch to enable better compatibility with embedded systems that don't support C++ exceptions efficiently.

This commit is contained in:
Robert Osfield
2009-11-16 14:47:52 +00:00
parent 52fbe9723f
commit d4c58cf1a1
6 changed files with 184 additions and 175 deletions

View File

@@ -659,7 +659,7 @@ void Image::allocateImage(int s,int t,int r,
else
{
// throw exception?? not for now, will simply set values to 0.
// failed to allocate memory, for now, will simply set values to 0.
_s = 0;
_t = 0;
_r = 0;