Skip to content

Commit a855d67

Browse files
Fix tiny variable names in C++ examples
1 parent 039679f commit a855d67

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/cpp/evolve-grid-identity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ int main() {
172172
};
173173
opinfo_slices[i * fac1.size() + j] = opinfo;
174174
}
175-
conv_types[i] = unique_convs[i];
175+
convtypes[i] = unique_convs[i];
176176
}
177177

178178
// ------------------ Construct the Evolution Operator ------------------

examples/cpp/evolve-grid.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ int main() {
223223
};
224224
opinfo_slices[i * fac1.size() + j] = opinfo;
225225
}
226-
conv_types[i] = unique_convs[i];
226+
convtypes[i] = unique_convs[i];
227227
}
228228

229229
// ------------------ Construct the Evolution Operator ------------------

0 commit comments

Comments
 (0)