StdStringSeq -> StringSeq

Signed-off-by: James Cherry <[email protected]>
This commit is contained in:
James Cherry
2026-03-08 15:51:50 -07:00
parent 4f540792a0
commit 859982bdc7
36 changed files with 114 additions and 114 deletions
+2 -2
View File
@@ -34,7 +34,7 @@
namespace sta {
using StdStringSeq = std::vector<std::string>;
using StringSeq = std::vector<std::string>;
using StdStringSet = std::set<std::string>;
inline bool
@@ -206,7 +206,7 @@ void
trimRight(std::string &str);
// Spit text into delimiter separated tokens and skip whitepace.
StdStringSeq
StringSeq
parseTokens(const std::string &s,
const char delimiter);