Skip to content

Commit

Permalink
better test for quads
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Feb 6, 2013
1 parent d9fdae4 commit 60c4bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Mojo/Transaction/WebSocket.pm
Expand Up @@ -9,7 +9,7 @@ use constant DEBUG => $ENV{MOJO_WEBSOCKET_DEBUG} || 0;

# Perl with support for quads
use constant MODERN =>
($Config{use64bitint} eq 'define' || $Config{longsize} >= 8);
(($Config{use64bitint} // '') eq 'define' || $Config{longsize} >= 8);

# Unique value from the spec
use constant GUID => '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
Expand Down

0 comments on commit 60c4bcb

Please sign in to comment.