Fix a compilation issue in TestTLogServer.actor.cpp

Without this change, `cmake --build` fails with (on macOS with Apple clang 15.0.0):

fdbserver/TestTLogServer.actor.cpp:363:125: error: use 'template' keyword to treat 'getReply' as a dependent template name
This commit is contained in:
Doğan Çeçen 2024-07-17 15:10:41 +03:00
parent 96802d7b8b
commit 0a3b496a2c

View File

@ -360,8 +360,8 @@ ACTOR Future<Void> startTestsTLogRecoveryActors(TestTLogOptions params) {
wait(pTLogTestContextEpochOne->peekCommitMessages(0, 0));
} else {
// Done with old generation. Lock the old generation of tLogs.
TLogLockResult data = wait(
pTLogTestContextEpochOne->pTLogContextList[tLogIdx]->TestTLogInterface.lock.getReply<TLogLockResult>());
TLogLockResult data = wait(pTLogTestContextEpochOne->pTLogContextList[tLogIdx]
->TestTLogInterface.lock.template getReply<TLogLockResult>());
TraceEvent("TestTLogServerLockResult").detail("KCV", data.knownCommittedVersion);
state Reference<TLogTestContext> pTLogTestContextEpochTwo =