summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Version.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2016-01-21 23:10:02 +0100
committerPierre Bourdon <delroth@gmail.com>2016-01-21 23:10:02 +0100
commit338714a3b083af9c045482764673a799d582cf2f (patch)
treeb89fff11cb62813c947524181824f9117be0be49 /Source/Core/Common/Version.cpp
parent7c3e4b34f3407b95ac1746fe6f4567c744478c60 (diff)
parent4b06e927315aeaae5294eb46925bdb9b8dd301dc (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.cpp14
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;