File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,6 @@ struct Message {
21
21
ErrorInvalidConversion,
22
22
};
23
23
24
- /* !
25
- * \brief parseSignals
26
- * \param data
27
- * \param values
28
- * \return
29
- */
30
24
ParseSignalsStatus parseSignals (const std::vector<uint8_t >& data, std::vector<double >& values) const ;
31
25
32
26
void appendSignal (const Signal& signal);
Original file line number Diff line number Diff line change @@ -223,9 +223,7 @@ void DbcParser::parse_dbc_header(std::istream& file_stream) {
223
223
version = match.str (2 );
224
224
225
225
utils::StreamHandler::get_next_non_blank_line (file_stream, line);
226
-
227
226
utils::StreamHandler::skip_to_next_blank_line (file_stream, line);
228
-
229
227
utils::StreamHandler::get_next_non_blank_line (file_stream, line);
230
228
231
229
if (!std::regex_search (line, match, bit_timing_re)) {
Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ std::string String::trim(const std::string& line) {
75
75
double String::convert_to_double (const std::string& value, double default_value) {
76
76
double converted_value = default_value;
77
77
fast_float::from_chars (value.data (), value.data () + value.size (), converted_value);
78
- // converted_value = std::stod(value);
79
78
return converted_value;
80
79
}
81
80
You can’t perform that action at this time.
0 commit comments