Overview
| Comment: | Never end enums with a comma
While this makes moving things around easier, this has been done by |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
3572e824c6192d6a2ef9199eb4363da9 |
| User & Date: | js on 2016-04-23 09:43:04 |
| Other Links: | manifest | tags |
Context
|
2016-04-23
| ||
| 19:55 | Add OFGZIPStream (check-in: 7c3f557d94 user: js tags: trunk) | |
| 09:43 | Never end enums with a comma (check-in: 3572e824c6 user: js tags: trunk) | |
|
2016-04-18
| ||
| 21:48 | Add of_thread_yield() (check-in: fa79bc173e user: js tags: trunk) | |
Changes
Modified src/OFArray.h from [18ecf3ff3e] to [a3a32a9cf7].
| ︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - + |
/*! @file */
@class OFString;
enum {
OF_ARRAY_SKIP_EMPTY = 1,
|
| ︙ |
Modified src/OFBlock.m from [49bc2fd375] to [ce186b9740].
| ︙ | |||
47 48 49 50 51 52 53 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | - + - + |
};
enum {
OF_BLOCK_HAS_COPY_DISPOSE = (1 << 25),
OF_BLOCK_HAS_CTOR = (1 << 26),
OF_BLOCK_IS_GLOBAL = (1 << 28),
OF_BLOCK_HAS_STRET = (1 << 29),
|
| ︙ |
Modified src/OFNumber.h from [a1c495e8ed] to [1972eca1cd].
| ︙ | |||
99 100 101 102 103 104 105 | 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 */ |
| ︙ |