Minor code style tweaks

No functional change.
This commit is contained in:
DU-jdto
2018-07-17 06:53:50 +10:00
committed by Stéphane Nicolet
parent ee0f5cd303
commit a05793517f
5 changed files with 13 additions and 13 deletions

View File

@@ -50,13 +50,13 @@ public:
Option(bool v, OnChange = nullptr);
Option(const char* v, OnChange = nullptr);
Option(double v, int minv, int maxv, OnChange = nullptr);
Option(const char* v, const char *cur, OnChange = nullptr);
Option(const char* v, const char* cur, OnChange = nullptr);
Option& operator=(const std::string&);
void operator<<(const Option&);
operator double() const;
operator std::string() const;
bool operator==(const char*);
bool operator==(const char*) const;
private:
friend std::ostream& operator<<(std::ostream&, const OptionsMap&);