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 -4
View File
@@ -45,7 +45,7 @@ public:
static PortDirection *unknown() { return unknown_; }
static PortDirection *find(const char *dir_name);
std::string_view name() const { return name_; }
int index() const { return index_; }
size_t index() const { return index_; }
bool isInput() const { return this == input_; }
// Input or bidirect.
bool isAnyInput() const;
@@ -66,10 +66,10 @@ public:
private:
PortDirection(const char *name,
int index);
size_t index);
const char *name_;
int index_;
size_t index_;
static PortDirection *input_;
static PortDirection *output_;
@@ -82,4 +82,4 @@ private:
static PortDirection *unknown_;
};
} // namespace
} // namespace sta