Differences From Artifact [a1c495e8ed]:
- File
src/OFNumber.h
— part of check-in
[2a27cf3000]
at
2016-01-03 00:41:26
on branch trunk
— Update copyright
While at it, also update the mail address. (user: js, size: 20764) [annotate] [blame] [check-ins using]
To Artifact [1972eca1cd]:
- File
src/OFNumber.h
— part of check-in
[3572e824c6]
at
2016-04-23 09:43:04
on branch trunk
— Never end enums with a comma
While this makes moving things around easier, this has been done by
accident and looks ugly. (user: js, size: 20763) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
99 100 101 102 103 104 105 | /*! ptrdiff_t */ OF_NUMBER_TYPE_PTRDIFF = 0x0E | OF_NUMBER_TYPE_SIGNED, /*! intptr_t */ OF_NUMBER_TYPE_INTPTR = 0x0F | OF_NUMBER_TYPE_SIGNED, /*! float */ OF_NUMBER_TYPE_FLOAT = 0x20, /*! double */ | | | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | /*! ptrdiff_t */ OF_NUMBER_TYPE_PTRDIFF = 0x0E | OF_NUMBER_TYPE_SIGNED, /*! intptr_t */ OF_NUMBER_TYPE_INTPTR = 0x0F | OF_NUMBER_TYPE_SIGNED, /*! float */ OF_NUMBER_TYPE_FLOAT = 0x20, /*! double */ OF_NUMBER_TYPE_DOUBLE = 0x40 | OF_NUMBER_TYPE_FLOAT } of_number_type_t; /*! * @class OFNumber OFNumber.h ObjFW/OFNumber.h * * @brief Provides a way to store a number in an object. */ |
︙ | ︙ |