mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
Added comments attribute
This commit is contained in:
@@ -541,12 +541,13 @@ namespace hex::lang {
|
||||
return this->m_attribute;
|
||||
}
|
||||
|
||||
[[nodiscard]] std::string_view getValue() const {
|
||||
[[nodiscard]] const std::optional<std::string>& getValue() const {
|
||||
return this->m_value;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string m_attribute, m_value;
|
||||
std::string m_attribute;
|
||||
std::optional<std::string> m_value;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user