commit | 2e83ea5211ce7ce404b9cf8c625ec289c16ea1b5 | [log] [tgz] |
---|---|---|
author | Reid Spencer <rspencer@reidspencer.com> | Mon Nov 15 04:42:44 2004 +0000 |
committer | Reid Spencer <rspencer@reidspencer.com> | Mon Nov 15 04:42:44 2004 +0000 |
tree | 28d74b18668a18d919b9b9cab7c1e7f4dcb7ce17 | |
parent | e660bd7296a638c47e35275d7f0659fdeaee8fce [diff] [blame] |
Make it actually compile on Solaris. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17815 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/System/Unix/TimeValue.cpp b/lib/System/Unix/TimeValue.cpp index 6b476c8..d140af9 100644 --- a/lib/System/Unix/TimeValue.cpp +++ b/lib/System/Unix/TimeValue.cpp
@@ -37,7 +37,7 @@ TimeValue TimeValue::now() { struct timeval the_time; - ::timerclear(&the_time); + timerclear(&the_time); if (0 != ::gettimeofday(&the_time,0)) ThrowErrno("Couldn't obtain time of day");