removed inline-keywords because gcc ignores them anyway

This commit is contained in:
Simen Svale Skogsrud
2011-02-17 23:59:10 +01:00
parent b8eee5ac9a
commit 124bc363bd
4 changed files with 11 additions and 11 deletions

View File

@ -98,7 +98,7 @@ void gc_init() {
gc.absolute_mode = TRUE;
}
inline float to_millimeters(double value) {
float to_millimeters(double value) {
return(gc.inches_mode ? (value * MM_PER_INCH) : value);
}