diff options
| author | Pierre Bourdon <delroth@gmail.com> | 2016-01-21 23:10:02 +0100 |
|---|---|---|
| committer | Pierre Bourdon <delroth@gmail.com> | 2016-01-21 23:10:02 +0100 |
| commit | 338714a3b083af9c045482764673a799d582cf2f (patch) | |
| tree | b89fff11cb62813c947524181824f9117be0be49 /Source/Core/Common/Version.cpp | |
| parent | 7c3e4b34f3407b95ac1746fe6f4567c744478c60 (diff) | |
| parent | 4b06e927315aeaae5294eb46925bdb9b8dd301dc (diff) | |
Merge pull request #3544 from mathieui/common_asterisks
Common: asterisks go against the type name
Diffstat (limited to 'Source/Core/Common/Version.cpp')
| -rw-r--r-- | Source/Core/Common/Version.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp index 2ac01cd22e..86380c4d92 100644 --- a/Source/Core/Common/Version.cpp +++ b/Source/Core/Common/Version.cpp @@ -13,7 +13,7 @@ #define BUILD_TYPE_STR "" #endif -const char *scm_rev_str = "Dolphin " +const char* scm_rev_str = "Dolphin " #if !SCM_IS_MASTER "[" SCM_BRANCH_STR "] " #endif @@ -25,14 +25,14 @@ const char *scm_rev_str = "Dolphin " #endif #ifdef _WIN32 -const char *netplay_dolphin_ver = SCM_DESC_STR " Win"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Win"; #elif __APPLE__ -const char *netplay_dolphin_ver = SCM_DESC_STR " Mac"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Mac"; #else -const char *netplay_dolphin_ver = SCM_DESC_STR " Lin"; +const char* netplay_dolphin_ver = SCM_DESC_STR " Lin"; #endif -const char *scm_rev_git_str = SCM_REV_STR; +const char* scm_rev_git_str = SCM_REV_STR; -const char *scm_desc_str = SCM_DESC_STR; -const char *scm_branch_str = SCM_BRANCH_STR; +const char* scm_desc_str = SCM_DESC_STR; +const char* scm_branch_str = SCM_BRANCH_STR; |
