From c7e2990a8e51084808a8bff5f4f7ded4418395e4 Mon Sep 17 00:00:00 2001
From: Francois Keith <francois.keith@aist.go.jp>
Date: Tue, 9 Nov 2010 21:22:42 +0900
Subject: [PATCH] Win32: Correct the #include for gettimeofday

---
 src/portability/gettimeofday.cc | 2 +-
 tests/CommonTools.cpp           | 2 +-
 tests/CommonTools.h             | 2 +-
 tests/TestObject.h              | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/portability/gettimeofday.cc b/src/portability/gettimeofday.cc
index f4110356..d0a7fdff 100644
--- a/src/portability/gettimeofday.cc
+++ b/src/portability/gettimeofday.cc
@@ -23,7 +23,7 @@
  *  Joint Japanese-French Robotics Laboratory (JRL)
  */
 #ifdef WIN32
-# include <TimeUtilsWindows.h>
+# include "gettimeofday.hh"
 
 # include <Windows.h>
 # if defined(_MSC_VER) || defined(_MSC_EXTENSIONS)
diff --git a/tests/CommonTools.cpp b/tests/CommonTools.cpp
index fd3739ae..a96de2fb 100644
--- a/tests/CommonTools.cpp
+++ b/tests/CommonTools.cpp
@@ -30,7 +30,7 @@
 
 #ifdef WIN32
 #include <Windows.h>
-#include "TimeUtilsWindows.h"
+#include "portability/gettimeofday.hh"
 #endif /*WIN32*/
 
 
diff --git a/tests/CommonTools.h b/tests/CommonTools.h
index 793b68f3..a45457c4 100644
--- a/tests/CommonTools.h
+++ b/tests/CommonTools.h
@@ -28,7 +28,7 @@
 
 #ifdef WIN32
 #include <Windows.h>
-#include "TimeUtilsWindows.h"
+#include "portability/gettimeofday.hh"
 #endif /*WIN32*/
 
 #include <time.h>
diff --git a/tests/TestObject.h b/tests/TestObject.h
index 56634910..2788a83e 100644
--- a/tests/TestObject.h
+++ b/tests/TestObject.h
@@ -34,7 +34,7 @@
 
 #ifdef WIN32
 #include <Windows.h>
-#include "TimeUtilsWindows.h"
+#include "portability/gettimeofday.hh"
 #endif /*WIN32*/
 
 #include <ostream>
-- 
GitLab