Remove unused includes.
[novacoin.git] / src / version.cpp
index b43ca64..e5d592d 100644 (file)
@@ -18,6 +18,10 @@ const std::string CLIENT_NAME("Satoshi");
 #endif
 
 // Compiler name
+#if defined(__GNUC__) && defined(__INTEL_COMPILER)
+/*code specific to linux icc compiler*/
+#define CL_NAME   "-icc"
+#else
 #ifdef __GNUC__
 /*code for GNU C compiler */
 #define CL_NAME   "-gcc"
@@ -33,7 +37,8 @@ const std::string CLIENT_NAME("Satoshi");
 #define CL_NAME   "-mingw"
 #else
 #define CL_NAME   "-genericcl"
-/*overs*/
+/*others*/
+#endif
 #endif
 
 // The following part of the code determines the CLIENT_BUILD variable.