Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
31cf53f0
Commit
31cf53f0
authored
Nov 11, 2013
by
psl-felipefarinon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
issue #583 removing C++11 code.
parent
485db41a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
clock.cpp
src/clock.cpp
+0
-1
No files found.
src/clock.cpp
View file @
31cf53f0
...
...
@@ -153,7 +153,6 @@ uint64_t zmq::clock_t::now_ms ()
// does not guarantee that it will use a hardware that offers a monotonic timer.
// So, lets use GetTickCount when GetTickCount64 is not available with an workaround
// to its 32 bit limitation.
static_assert
(
sizeof
(
uint64_t
)
>=
sizeof
(
ULONGLONG
),
"Loosing timer information"
);
return
static_cast
<
uint64_t
>
((
*
my_get_tick_count64
)());
#else
return
now_us
()
/
1000
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment