We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6acc681 commit 50908f2Copy full SHA for 50908f2
common/speculative.cpp
@@ -157,7 +157,7 @@ static std::string replace_to_dft(
157
struct common_speculative * spec,
158
const std::string& input) {
159
std::string result = input;
160
- for (const auto& pair : spec->tgt_dft_replacements) {
+ for (const auto & pair : spec->tgt_dft_replacements) {
161
size_t pos = result.find(pair.first);
162
while (pos != std::string::npos) {
163
result.replace(pos, pair.first.length(), pair.second);
0 commit comments