formatting
This commit is contained in:
parent
6b6d069f3e
commit
08216606ee
1 changed files with 11 additions and 6 deletions
|
@ -60,13 +60,18 @@ public:
|
|||
attribute_descriptor& operator=(attribute_descriptor const& other)
|
||||
{
|
||||
if (this == &other)
|
||||
{
|
||||
return *this;
|
||||
name_=other.name_;
|
||||
type_=other.type_;
|
||||
primary_key_=other.primary_key_;
|
||||
size_=other.size_;
|
||||
precision_=other.precision_;
|
||||
return *this;
|
||||
}
|
||||
else
|
||||
{
|
||||
name_=other.name_;
|
||||
type_=other.type_;
|
||||
primary_key_=other.primary_key_;
|
||||
size_=other.size_;
|
||||
precision_=other.precision_;
|
||||
return *this;
|
||||
}
|
||||
}
|
||||
|
||||
std::string const& get_name() const
|
||||
|
|
Loading…
Reference in a new issue