Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FormerLurker/ArcWelderLib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'GcodeProcessorLib/gcode_parser.h')
-rw-r--r--GcodeProcessorLib/gcode_parser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/GcodeProcessorLib/gcode_parser.h b/GcodeProcessorLib/gcode_parser.h
index 714dfe4..27414db 100644
--- a/GcodeProcessorLib/gcode_parser.h
+++ b/GcodeProcessorLib/gcode_parser.h
@@ -44,7 +44,7 @@ private:
std::set<std::string> text_only_functions_;
std::set<std::string> parsable_commands_;
// Functions
- bool try_extract_double(char ** p_p_gcode, double * p_double) const;
+ bool try_extract_double(char ** p_p_gcode, double * p_double, unsigned char * p_precision) const;
static bool try_extract_gcode_command(char ** p_p_gcode, std::string * p_command);
static bool try_extract_text_parameter(char ** p_p_gcode, std::string * p_parameter);
bool try_extract_parameter(char ** p_p_gcode, parsed_command_parameter * parameter) const;