Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gwenaël Samain
cython
Commits
cedf8a44
Commit
cedf8a44
authored
Jul 13, 2010
by
Lisandro Dalcin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
silent spurious MSVC performance warning about C++ int->bool in testcase
parent
50f32415
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
tests/run/cpp_nonstdint.h
tests/run/cpp_nonstdint.h
+2
-1
No files found.
tests/run/cpp_nonstdint.h
View file @
cedf8a44
...
...
@@ -45,7 +45,8 @@ class Integral {
private:
static
bool
is_le
()
{
int
one
=
1
;
return
(
int
)
*
(
unsigned
char
*
)
&
one
;
int
b
=
(
int
)
*
(
unsigned
char
*
)
&
one
;
return
b
?
true
:
false
;
}
static
unsigned
int
lsb
()
{
return
is_le
()
?
0
:
N
-
1
;
...
...
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