Replace use of deprecated C Standard library headers in C++ code.

Change-Id: I9fa6630c7e4bdb2897df34d417635d8c7d8253bc
Signed-off-by: Tyler Chatow <tchatow@gmail.com>
diff --git a/y2017/vision/target_finder.cc b/y2017/vision/target_finder.cc
index 91e801e..f7a958c 100644
--- a/y2017/vision/target_finder.cc
+++ b/y2017/vision/target_finder.cc
@@ -1,6 +1,6 @@
 #include "y2017/vision/target_finder.h"
 
-#include <math.h>
+#include <cmath>
 
 namespace y2017 {
 namespace vision {
@@ -248,7 +248,7 @@
   *ry = vec.x() * sin_ang + vec.y() * cos_ang;
 }
 
-void TargetFinder::GetAngleDist(const aos::vision::Vector<2>& target,
+void TargetFinder::GetAngleDist(const aos::vision::Vector<2> &target,
                                 double down_angle, double *dist,
                                 double *angle) {
   // TODO(ben): Will put all these numbers in a config file before