Commit 3e191a92 authored by Thibault Lemaire's avatar Thibault Lemaire
Browse files

clang-tidy

1 merge request!1189Draft: Resolve FLEXISIP-232 "Probleme avec la syntaxe du parametre filter des modules flexisip"
Showing with 7 additions and 8 deletions
......@@ -4,21 +4,21 @@
#pragma once
#include <memory>
#include <vector>
#include "agent.hh"
#include "asserts.hh"
#include "client-core.hh"
#include "flexisip/sofia-wrapper/su-root.hh"
#include "utils/proxy-server.hh"
#include <memory>
#include <vector>
namespace flexisip {
namespace tester {
namespace flexisip::tester {
class CoreAssert : public BcAssert {
public:
template <class... Steppables>
CoreAssert(Steppables&&... steppables) : BcAssert({stepperFrom(steppables)...}) {
explicit CoreAssert(Steppables&&... steppables) : BcAssert({stepperFrom(steppables)...}) {
}
static std::function<void()> stepperFrom(linphone::Core& core) {
......@@ -60,5 +60,4 @@ public:
}
};
} // namespace tester
} // namespace flexisip
} // namespace flexisip::tester
......@@ -24,7 +24,7 @@ struct InjectedHooks {
// Pass an instance of this class to flexisip::tester::Server's constructor to enable it.
class InjectedModuleInfo : public ModuleInfoBase {
public:
InjectedModuleInfo(const InjectedHooks& moduleHooks)
explicit InjectedModuleInfo(const InjectedHooks& moduleHooks)
: ModuleInfoBase(
"InjectedTestModule",
"A module injected as high up in the module chain as possible to mangle requests and "
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment