mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Make the OptionClassifier members non-const.
Constness deletes the default copy assignment operator, making GncOption not copy-assignable.
This commit is contained in:
parent
b6fd844774
commit
01fcae6ac8
@ -83,11 +83,11 @@ protected:
|
|||||||
|
|
||||||
struct OptionClassifier
|
struct OptionClassifier
|
||||||
{
|
{
|
||||||
const std::string m_section;
|
std::string m_section;
|
||||||
const std::string m_name;
|
std::string m_name;
|
||||||
const std::string m_sort_tag;
|
std::string m_sort_tag;
|
||||||
// const std::type_info m_kvp_type;
|
// std::type_info m_kvp_type;
|
||||||
const std::string m_doc_string;
|
std::string m_doc_string;
|
||||||
};
|
};
|
||||||
|
|
||||||
template <typename ValueType>
|
template <typename ValueType>
|
||||||
|
Loading…
Reference in New Issue
Block a user