Applied project style to multiple files

This commit is contained in:
fourtf
2018-07-06 18:10:21 +02:00
parent 3993708164
commit 535c0616a3
26 changed files with 149 additions and 157 deletions
+5 -5
View File
@@ -12,23 +12,23 @@ public:
{
}
Property(const T &_value)
: value(_value)
Property(const T &value)
: value_(value)
{
}
T &operator=(const T &f)
{
return value = f;
return value_ = f;
}
operator T const &() const
{
return value;
return value_;
}
protected:
T value;
T value_;
};
} // namespace chatterino