From 9d371cc872b5dbde2194028cb61ef01498d68fe8 Mon Sep 17 00:00:00 2001 From: Jonathan L Long Date: Tue, 6 May 2014 16:40:09 -0700 Subject: [PATCH] improve includes in util/math_function.hpp This commit removes the redundant , and adds the necessary and . --- include/caffe/util/math_functions.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/caffe/util/math_functions.hpp b/include/caffe/util/math_functions.hpp index 887c8f2..d9c7835 100644 --- a/include/caffe/util/math_functions.hpp +++ b/include/caffe/util/math_functions.hpp @@ -4,8 +4,10 @@ #define CAFFE_UTIL_MATH_FUNCTIONS_H_ #include -#include // for signbit -#include // for std::fabs +#include +#include // for std::fabs and std::signbit + +#include "glog/logging.h" #include "caffe/util/mkl_alternate.hpp" -- 2.7.4