tidy round1

This commit is contained in:
James Cherry
2026-04-13 14:59:05 -07:00
parent 0a8a86d606
commit 63efee64bf
328 changed files with 3030 additions and 3441 deletions
+4 -7
View File
@@ -24,22 +24,20 @@
#include "Error.hh"
#include <cstdlib>
#include <cstdio>
#include <cstdlib>
#include "Format.hh"
#include "StringUtil.hh"
namespace sta {
Exception::Exception() :
std::exception()
Exception::Exception()
{
}
ExceptionMsg::ExceptionMsg(const std::string &msg,
const bool suppressed) :
Exception(),
bool suppressed) :
msg_(msg),
suppressed_(suppressed)
{
@@ -53,7 +51,6 @@ ExceptionMsg::what() const noexcept
ExceptionLine::ExceptionLine(const std::string &filename,
int line) :
Exception(),
filename_(filename),
line_(line)
{
@@ -81,4 +78,4 @@ FileNotWritable::what() const noexcept
return msg_.c_str();
}
} // namespace
} // namespace sta