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/y2018/constants.cc b/y2018/constants.cc
index 156bc5b..e6951cc 100644
--- a/y2018/constants.cc
+++ b/y2018/constants.cc
@@ -1,9 +1,8 @@
#include "y2018/constants.h"
-#include <inttypes.h>
-#include <math.h>
-#include <stdint.h>
-
+#include <cinttypes>
+#include <cmath>
+#include <cstdint>
#include <map>
#if __has_feature(address_sanitizer)
@@ -13,7 +12,6 @@
#include "aos/logging/logging.h"
#include "aos/network/team_number.h"
#include "aos/stl_mutex/stl_mutex.h"
-
#include "y2018/control_loops/drivetrain/drivetrain_dog_motor_plant.h"
#include "y2018/control_loops/drivetrain/polydrivetrain_dog_motor_plant.h"