summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Version.cpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 20:46:25 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 20:46:25 +0100
commit78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba (patch)
tree46860018019feb7aa24b19b18e7a743fd1bb8c7a /Source/Core/Common/Version.cpp
parent7c3e4b34f3407b95ac1746fe6f4567c744478c60 (diff)
Common: asterisks go against the type name
not the variable 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;