tidy round1

This commit is contained in:
James Cherry
2026-04-13 14:58:16 -07:00
parent 0a8a86d606
commit 63efee64bf
328 changed files with 3030 additions and 3441 deletions

View File

@@ -27,34 +27,15 @@
namespace sta {
SdcCmdComment::SdcCmdComment()
{
}
SdcCmdComment::SdcCmdComment(std::string comment) :
comment_(std::move(comment))
{
}
SdcCmdComment::SdcCmdComment(std::string_view comment) :
comment_(comment)
{
}
SdcCmdComment::~SdcCmdComment()
{
}
void
SdcCmdComment::setComment(std::string comment)
{
comment_ = std::move(comment);
}
void
SdcCmdComment::setComment(std::string_view comment)
{
comment_ = comment;
}
} // namespace
} // namespace sta