revert last change, blas_quickdivide returns a signed int again

This commit is contained in:
Martin Kroeker 2020-05-01 21:12:11 +02:00 committed by GitHub
parent 6b96e6dfad
commit 20f2f6fc84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/*********************************************************************/
/*********************************************************************/
/* Copyright 2009, 2010 The University of Texas at Austin. */
/* All rights reserved. */
/* */
@ -199,7 +199,7 @@ static __inline BLASLONG blas_quickdivide(BLASLONG x, BLASLONG y){
#else
extern unsigned int blas_quick_divide_table[];
static __inline unsigned int blas_quickdivide(unsigned int x, unsigned int y){
static __inline int blas_quickdivide(unsigned int x, unsigned int y){
unsigned int result;