[TIMOB-18896] Windows:: CamelCase all Enum name/memers in TitaniumKit
| GitHub Issue | n/a |
|---|---|
| Type | Story |
| Priority | Medium |
| Status | Open |
| Resolution | Unresolved |
| Affected Version/s | n/a |
| Fix Version/s | n/a |
| Components | Windows |
| Labels | n/a |
| Reporter | Kota Iguchi |
| Assignee | Unknown |
| Created | 2015-05-12T12:40:17.000+0000 |
| Updated | 2018-02-28T19:55:34.000+0000 |
Description
Currently All enum members in TitaniumKit are capitalized, but it could conflict with platform-specific
#define-ed constants like DELETE on Windows. We could avoid it by defining it in CamelCase.
enum class TEST {
DELETE
};
↓
enum class Test {
Delete
};
Attachments
| File | Date | Size |
|---|---|---|
| enum.png | 2015-05-12T12:39:34.000+0000 | 7853 |
No comments