Browse Source

make blas_quickdivide actually return unsigned (to placate clang)

pull/2594/head
Martin Kroeker GitHub 6 years ago
parent
commit
6b96e6dfad
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common_x86_64.h

+ 1
- 1
common_x86_64.h View File

@@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){
#else
extern unsigned int blas_quick_divide_table[];

static __inline int blas_quickdivide(unsigned int x, unsigned int y){
static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){

unsigned int result;



Loading…
Cancel
Save