Merge pull request #15541 from cocos2d/fix-doxygen-mistakes

Fix doxygen format mistakes in enum class Platform
This commit is contained in:
minggo 2016-05-03 09:38:58 +08:00
commit 9f678f2f27
1 changed files with 12 additions and 12 deletions

View File

@ -46,18 +46,18 @@ public:
*/ */
enum class Platform enum class Platform
{ {
OS_WINDOWS,/** Windows */ OS_WINDOWS, /**< Windows */
OS_LINUX,/** Linux */ OS_LINUX, /**< Linux */
OS_MAC,/** Mac*/ OS_MAC, /**< Mac OS X*/
OS_ANDROID,/** Android */ OS_ANDROID, /**< Android */
OS_IPHONE,/** Iphone */ OS_IPHONE, /**< iPhone */
OS_IPAD,/** Ipad */ OS_IPAD, /**< iPad */
OS_BLACKBERRY,/** BLACKBERRY */ OS_BLACKBERRY, /**< BlackBerry */
OS_NACL,/** Nacl */ OS_NACL, /**< Native Client in Chrome */
OS_EMSCRIPTEN,/** Emscripten */ OS_EMSCRIPTEN, /**< Emscripten */
OS_TIZEN,/** Tizen */ OS_TIZEN, /**< Tizen */
OS_WINRT,/** Windows Store Applications */ OS_WINRT, /**< Windows Runtime Applications */
OS_WP8/** Windows Phone Applications */ OS_WP8 /**< Windows Phone 8 Applications */
}; };
/** /**