formatting

This commit is contained in:
Dane Springmeyer 2012-02-13 11:01:25 -08:00
parent 6b6d069f3e
commit 08216606ee

View file

@ -60,7 +60,11 @@ public:
attribute_descriptor& operator=(attribute_descriptor const& other)
{
if (this == &other)
{
return *this;
}
else
{
name_=other.name_;
type_=other.type_;
primary_key_=other.primary_key_;
@ -68,6 +72,7 @@ public:
precision_=other.precision_;
return *this;
}
}
std::string const& get_name() const
{