/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/Error.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-06 16:42:54 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130906164254-1zquzinljzw2g1x2
* Fixed a DoxyGen error documentation error of an enum.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
 * The different error types.
57
57
 */
58
58
typedef enum {
59
 
  S_ERROR_NONE = 0, /** Not on error */
60
 
  S_ERROR_INPUT_OUTPUT, /** An I/O error */
61
 
  S_ERROR_OVERFLOW, /** An Overflow error */
62
 
  S_ERROR_OTHER = INT_MAX - 1, /** Some unknowned error */
63
 
  S_ERROR_NULL = INT_MAX /** An NULL error */
 
59
  S_ERROR_NONE = 0, /**< Not on error */
 
60
  S_ERROR_INPUT_OUTPUT, /**< An I/O error */
 
61
  S_ERROR_OVERFLOW, /**< An Overflow error */
 
62
  S_ERROR_OTHER = INT_MAX - 1, /**< Some unknowned error */
 
63
  S_ERROR_NULL = INT_MAX /**< An NULL error */
64
64
} SErrorType;
65
65
 
66
66