Remove more lint, mostly C-style casts.

Change-Id: Iaf1f23290e35ed48e5795fb20690953a9a834457
diff --git a/src/compiler.cc b/src/compiler.cc
index 6cdb6ee..0eb4301 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -54,7 +54,7 @@
 }
 
 static double Percentage(size_t x, size_t y) {
-  return 100.0 * ((double)x) / ((double)(x + y));
+  return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y));
 }
 
 static void DumpStat(size_t x, size_t y, const char* str) {