We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b43b62 commit f4a8a81Copy full SHA for f4a8a81
include/libdbc/message.hpp
@@ -31,7 +31,9 @@ struct Message {
31
void appendSignal(const Signal& signal);
32
const std::vector<Signal> getSignals() const;
33
uint32_t id() const;
34
- const std::string& name() {return m_name;}
+ const std::string& name() const {
35
+ return m_name;
36
+ }
37
void addValueDescription(const std::string& signal_name, const std::vector<Signal::SignalValueDescriptions>&);
38
39
virtual bool operator==(const Message& rhs) const;
0 commit comments