I am looking for a path search, so I don’t need to add 'f' to all my doublings when programming: for example:
FunctionTakingLotsOfFloatsAsParameter( 1.1f , 2.2f , 3.3f , 4.4 );
I want to write this instead:
FunctionTakingLotsOfFloatsAsParameter( 1.1 , 2.2 , 3.3 , 4.4 );
Is there a way to make a compiler that creates a float instead of a double as a standard non-integer number?
source
share