| 61 | } |
| 62 | |
| 63 | std::string SettingMetaFloat::Export(ExportMode export_mode) const { |
| 64 | (void)export_mode; |
| 65 | |
| 66 | const std::string float_format = this->GetFloatFormat(); |
| 67 | |
| 68 | return format(float_format.c_str(), this->default_value); |
| 69 | } |
| 70 | |
| 71 | bool SettingMetaFloat::Equal(const SettingMeta& other) const { |
| 72 | if (!SettingMeta::Equal(other)) return false; |
nothing calls this directly
no test coverage detected