summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authormayeut <mayeut@users.noreply.github.com>2015-07-24 23:55:45 +0200
committermayeut <mayeut@users.noreply.github.com>2015-07-24 23:55:45 +0200
commitb190a91ab5a147cfdf10dde57354bec90a1f9258 (patch)
tree3a6d2e0207553e8fbd2ec855b9575b1c5a3a5a30 /src/lib
parentf6843d55111d015ee7a696760a748576b51fdb0a (diff)
Remove some warnings when building
Update #442
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/openjp2/opj_includes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/openjp2/opj_includes.h b/src/lib/openjp2/opj_includes.h
index d0130028..d8faede0 100644
--- a/src/lib/openjp2/opj_includes.h
+++ b/src/lib/openjp2/opj_includes.h
@@ -127,8 +127,8 @@ static INLINE long lrintf(float f){
#ifdef _M_X64
return _mm_cvt_ss2si(_mm_load_ss(&f));
- // commented out line breaks many tests
- ///return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f));
+ /* commented out line breaks many tests */
+ /* return (long)((f>0.0f) ? (f + 0.5f):(f -0.5f)); */
#else
int i;
_asm{