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 476bbb1 commit 978efb6Copy full SHA for 978efb6
src/Ic.cxx
@@ -230,11 +230,11 @@ std::vector<std::pair<Ic::Operation, Ic::Data>> Ic::executeSequence(std::vector<
230
Data data = it.second;
231
try {
232
if (operation == Operation::Read) {
233
- auto out = read(boost::get<IcData>(data));
+ auto out = read(boost::get<uint32_t>(data));
234
ret.push_back({ operation, out });
235
} else if (operation == Operation::Write) {
236
- auto out = write(boost::get<IcData>(data));
237
- ret.push_back({ operation, out });
+ write(boost::get<IcData>(data));
+ ret.push_back({ operation, IcData{ boost::get<IcData>(data) }});
238
} else {
239
BOOST_THROW_EXCEPTION(IcException() << ErrorInfo::Message("IC operation type unknown"));
240
}
0 commit comments