Changeset 10415 for OpenSceneGraph/trunk/src/osgPlugins/cfg/ConfigParser.y
- Timestamp:
- 06/25/09 18:07:49 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/cfg/ConfigParser.y
r10412 r10415 519 519 real : PRTOKEN_FLOAT 520 520 { 521 $$ = atof(flexer->YYText());521 $$ = osg::asciiToFloat(flexer->YYText()); 522 522 } 523 523 | PRTOKEN_INTEGER 524 524 { 525 $$ = atof(flexer->YYText());525 $$ = osg::asciiToFloat(flexer->YYText()); 526 526 } 527 527 ; … … 530 530 floatparam : PRTOKEN_FLOAT 531 531 { 532 $$ = atof(flexer->YYText());532 $$ = osg::asciiToFloat(flexer->YYText()); 533 533 } 534 534 ;
