Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mpc-hc/VersionInfo.cpp')
-rw-r--r--src/mpc-hc/VersionInfo.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mpc-hc/VersionInfo.cpp b/src/mpc-hc/VersionInfo.cpp
index 5726084f0..b5f332b8e 100644
--- a/src/mpc-hc/VersionInfo.cpp
+++ b/src/mpc-hc/VersionInfo.cpp
@@ -1,5 +1,5 @@
/*
- * (C) 2013-2014 see Authors.txt
+ * (C) 2013-2015 see Authors.txt
*
* This file is part of MPC-HC.
*
@@ -83,3 +83,12 @@ unsigned VersionInfo::GetRevisionNumber()
{
return MPC_VERSION_REV;
}
+
+CString VersionInfo::GetGCCVersion()
+{
+#ifdef _WIN64
+ return GCC64_VERSION;
+#else
+ return GCC32_VERSION;
+#endif
+}