diff options
author | David Chisnall <theraven@FreeBSD.org> | 2012-03-14 00:09:36 +0000 |
---|---|---|
committer | David Chisnall <theraven@FreeBSD.org> | 2012-03-14 00:09:36 +0000 |
commit | 94e3ee44c3581ff37c5e01b5ffe5eb16d30079a7 (patch) | |
tree | 077f044b08d256dd8348f977fe56d18c08fccd78 /contrib/libc++/src/chrono.cpp | |
parent | 064f517d2b6ebfc42bf636d3fb85ac815196f134 (diff) | |
parent | 362d815b81e2b4b66c33b99203d821b8928607e1 (diff) |
Notes
Diffstat (limited to 'contrib/libc++/src/chrono.cpp')
-rw-r--r-- | contrib/libc++/src/chrono.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libc++/src/chrono.cpp b/contrib/libc++/src/chrono.cpp index 416b95013ef2..73c83ee084e9 100644 --- a/contrib/libc++/src/chrono.cpp +++ b/contrib/libc++/src/chrono.cpp @@ -61,7 +61,7 @@ static steady_clock::rep steady_simplified() { - return mach_absolute_time(); + return static_cast<steady_clock::rep>(mach_absolute_time()); } static |