Merge pull request #578 from opentoonz/warning-cleanup-pr

Quiet warnings
This commit is contained in:
Shinya Kitaoka 2016-07-06 19:24:49 +09:00 committed by GitHub
commit 47895a0d7b
3 changed files with 4 additions and 4 deletions

View file

@ -52,8 +52,8 @@ long __declspec(naked) CPUCheckForExtensions() {
push esi
push ebx
xor ebp,ebp ;cpu flags - if we don't have CPUID, we probably
;won't want to try FPU optimizations.
xor ebp,ebp ;cpu flags - if we do not have CPUID, we probably
;will not want to try FPU optimizations.
;check for CPUID.

View file

@ -49,4 +49,4 @@ private:
TLevelReaderMesh &operator=(const TLevelReaderMesh &);
};
#endif TIIO_MESH_H
#endif /* TIIO_MESH_H */

View file

@ -469,7 +469,7 @@ int sp_dgemv (char *, double, SuperMatrix *, double *,
SuperMatrix *_A = const_cast<SuperMatrix *>(A);
double *_x = const_cast<double *>(x);
sp_dgemv("N", 1.0, _A, _x, 1, 1.0, y, 1);
sp_dgemv((char *)"N", 1.0, _A, _x, 1, 1.0, y, 1);
}
//---------------------------------------------------------------