From 2732da28a37ce18959ac6efc4c78896e753f481c Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 18 Feb 2015 20:51:11 -0600 Subject: [PATCH] C++: Remove 'using ::timeval' from ctime. struct timeval was recently move to sys/time.h where it belongs. Now there are problems when it is referenced in ctime. Fixed by just removing it from ctime. Is that correct? or should ctime include sys/time.h? Noted by David Sidrane --- include/cxx/ctime | 1 - 1 file changed, 1 deletion(-) diff --git a/include/cxx/ctime b/include/cxx/ctime index 3d3dfaec164..18fdded561b 100644 --- a/include/cxx/ctime +++ b/include/cxx/ctime @@ -53,7 +53,6 @@ namespace std using ::clockid_t; using ::timer_t; using ::timespec; - using ::timeval; using ::tm; using ::itimerspec; using ::sigevent;