Commit a406e18f authored by Joerg Bornemann's avatar Joerg Bornemann
Browse files

Work around internal compiler error on MSVC 2015 Update 3 x86


Change-Id: If62418e29741cef6790690eba2b4c890cd8fcaee
Reviewed-by: default avatarAllan Sandfeld Jensen <allan.jensen@qt.io>
No related merge requests found
Showing with 3 additions and 2 deletions
......@@ -95,9 +95,10 @@ public:
case 3:
return AAAA();
default:
SkFAIL("Mod is broken?!?");
return RGBA();
break;
}
SkFAIL("Mod is broken?!?");
return RGBA();
}
private:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment