Binh-Minh Ribler 2167e3c495 [svn-r4668]
Purpose:
    Eliminated warnings
Description:
    On IRIX and Windows 98, if a function, that returns a value, throws
    an exception in "else" statement, the compiler still complains that
    the function doesn't return a value.
Solution:
    Replaced:
	if (something valid)
	    return a value
	else
	    throw an exception

    with:
	if (something invalid)
	    throw an exception
	return a value
Platforms tested:
    Windows 98
    SunOS 5.7 (arabica)
    Linux 6.2 (eirene)
    IRIX64 (modi4) - only tested that the warnings went away, still working
			on other configuration problems.
2001-12-05 11:03:14 -05:00
..
2001-11-28 15:55:43 -05:00
2001-09-21 18:50:15 -05:00
2001-12-05 11:03:14 -05:00
2001-11-13 17:15:47 -05:00
2000-11-14 18:16:05 -05:00
2001-08-01 16:00:25 -05:00
2001-08-01 16:00:25 -05:00
2001-09-21 18:52:37 -05:00