Skip to content
Snippets Groups Projects
Commit e65a9752 authored by Jens Georg's avatar Jens Georg
Browse files

Fix endless recursion in DebugPrintAccessorDecorator

parent 72370998
No related branches found
No related tags found
No related merge requests found
......@@ -52,7 +52,7 @@ namespace ChimeraTK {
TransferFuture doReadTransferAsync() override {
std::cout << "doReadTransferAsync() called on '" << _fullyQualifiedName << std::endl;
return ChimeraTK::NDRegisterAccessorDecorator<UserType>::readAsync();
return ChimeraTK::NDRegisterAccessorDecorator<UserType>::doReadTransferAsync();
}
void doPreRead() override {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment