diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-02 14:04:49 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-12-02 14:04:49 +0100 |
commit | ae0ad49f36e8ba5983839581302ed16ddbd75d5f (patch) | |
tree | ae29ffaad64709f0887f0e2a2a225890a75c10b2 /quotest | |
parent | d7f96a88710235c7c8648a7216bb5ad7d779889a (diff) | |
download | libquotient-ae0ad49f36e8ba5983839581302ed16ddbd75d5f.tar.gz libquotient-ae0ad49f36e8ba5983839581302ed16ddbd75d5f.zip |
visit(Event, ...) -> switchOnType()
It has not much to do with the Visitor design pattern; also,
std::visit() has different conventions on the order of parameters.
Diffstat (limited to 'quotest')
-rw-r--r-- | quotest/quotest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quotest/quotest.cpp b/quotest/quotest.cpp index d006c7fb..764d5dfd 100644 --- a/quotest/quotest.cpp +++ b/quotest/quotest.cpp @@ -498,8 +498,8 @@ bool TestSuite::checkFileSendingOutcome(const TestToken& thisTest, clog << "File event " << txnId.toStdString() << " arrived in the timeline" << endl; - // This part tests visit() - return visit( + // This part tests switchOnType() + return switchOnType( *evt, [&](const RoomMessageEvent& e) { // TODO: check #366 once #368 is implemented |