client: Remove redundant code in OpenCL CPU detection which was added in commit 8888ba6

This commit is contained in:
Charlie Fenton 2013-11-04 02:19:19 -08:00
parent 2a1765fcd2
commit becaf33656
1 changed files with 0 additions and 2 deletions

View File

@ -107,8 +107,6 @@ static bool is_NVIDIA(char* vendor) {
static bool is_intel(char* vendor) {
if (strcasestr(vendor, "intel")) return true;
if (strcasestr(vendor, "GenuineIntel")) return true;
if (strcasestr(vendor, "Intel(R) Corporation")) return true;
return false;
}