Skip to content
Snippets Groups Projects
Commit 66574802 authored by Sébastien Blin's avatar Sébastien Blin Committed by Adrien Béraud
Browse files

jamiaccount: fix regex for clang

Change-Id: Ib4782138e0c428531f15cc9b67d12f2ec7ae556a
parent 69f55997
Branches
No related tags found
No related merge requests found
...@@ -218,7 +218,7 @@ static constexpr const char* DEFAULT_TURN_USERNAME = "ring"; ...@@ -218,7 +218,7 @@ static constexpr const char* DEFAULT_TURN_USERNAME = "ring";
static constexpr const char* DEFAULT_TURN_PWD = "ring"; static constexpr const char* DEFAULT_TURN_PWD = "ring";
static constexpr const char* DEFAULT_TURN_REALM = "ring"; static constexpr const char* DEFAULT_TURN_REALM = "ring";
static const auto PROXY_REGEX = std::regex( static const auto PROXY_REGEX = std::regex(
"(https?://)?([\\w\\.\\-\\_\\~]+)(:(\\d+)|:\\[(.+)-(.+)\\])?"); "(https?://)?([\\w\\.\\-_\\~]+)(:(\\d+)|:\\[(.+)-(.+)\\])?");
static const std::string PEER_DISCOVERY_JAMI_SERVICE = "jami"; static const std::string PEER_DISCOVERY_JAMI_SERVICE = "jami";
const constexpr auto PEER_DISCOVERY_EXPIRATION = std::chrono::minutes(1); const constexpr auto PEER_DISCOVERY_EXPIRATION = std::chrono::minutes(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment