diff options
author | David Shah <dave@ds0.me> | 2020-12-17 21:19:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 21:19:05 +0000 |
commit | 84c55f89312521e72d3d0299d85b29ac6080a272 (patch) | |
tree | 3eed5a75647162760c5de275b6533516b891e8b0 | |
parent | c667c56bd99576391773123631751672ba4ceffb (diff) | |
parent | c967f8e43496973b667c4a962a62b9a04e7c987b (diff) | |
download | nextpnr-84c55f89312521e72d3d0299d85b29ac6080a272.tar.gz nextpnr-84c55f89312521e72d3d0299d85b29ac6080a272.tar.bz2 nextpnr-84c55f89312521e72d3d0299d85b29ac6080a272.zip |
Merge pull request #543 from tcal-x/use-single-char-find
Use std::string::find(char c) when searching for a single character.
-rw-r--r-- | ice40/pcf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/pcf.cc b/ice40/pcf.cc index 8cf5db39..867f6165 100644 --- a/ice40/pcf.cc +++ b/ice40/pcf.cc @@ -37,7 +37,7 @@ bool apply_pcf(Context *ctx, std::string filename, std::istream &in) int lineno = 0; while (std::getline(in, line)) { lineno++; - size_t cstart = line.find("#"); + size_t cstart = line.find('#'); if (cstart != std::string::npos) line = line.substr(0, cstart); std::stringstream ss(line); |