- make fast_atof_move a template and rename it to fast_atoreal_move.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1125 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
@@ -811,13 +811,13 @@ bool PLY::PropertyInstance::ParseValue(
|
||||
|
||||
case EDT_Float:
|
||||
|
||||
pCur = fast_atof_move(pCur,out->fFloat);
|
||||
pCur = fast_atoreal_move<float>(pCur,out->fFloat);
|
||||
break;
|
||||
|
||||
case EDT_Double:
|
||||
|
||||
float f;
|
||||
pCur = fast_atof_move(pCur,f);
|
||||
pCur = fast_atoreal_move<float>(pCur,f);
|
||||
out->fDouble = (double)f;
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user