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

@ -62,10 +62,10 @@ void plan_buffer_line(double x, double y, double z, double feed_rate, int invert
// Called when the current block is no longer needed. Discards the block and makes the memory
// availible for new blocks.
inline void plan_discard_current_block();
void plan_discard_current_block();
// Gets the current block. Returns NULL if buffer empty
inline block_t *plan_get_current_block();
block_t *plan_get_current_block();
// Enables or disables acceleration-management for upcoming blocks
void plan_set_acceleration_manager_enabled(int enabled);