mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
fix(core): constexpr variables are implicit const
This commit is contained in:
parent
ae3caf72f2
commit
5859f72627
2 changed files with 6 additions and 6 deletions
|
|
@ -30,7 +30,7 @@
|
|||
// =============================================================================
|
||||
|
||||
namespace {
|
||||
constexpr const char MultipartBoundary[] = "---------------------------14737809831466499882746641449";
|
||||
constexpr char MultipartBoundary[] = "---------------------------14737809831466499882746641449";
|
||||
}
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -29,13 +29,13 @@ using namespace std;
|
|||
LINPHONE_BEGIN_NAMESPACE
|
||||
|
||||
namespace PriorityHeader {
|
||||
constexpr const char HeaderName[] = "Priority";
|
||||
constexpr char HeaderName[] = "Priority";
|
||||
|
||||
// Values
|
||||
constexpr const char NonUrgent[] = "non-urgent";
|
||||
constexpr const char Urgent[] = "urgent";
|
||||
constexpr const char Emergency[] = "emergency";
|
||||
constexpr const char Normal[] = "normal";
|
||||
constexpr char NonUrgent[] = "non-urgent";
|
||||
constexpr char Urgent[] = "urgent";
|
||||
constexpr char Emergency[] = "emergency";
|
||||
constexpr char Normal[] = "normal";
|
||||
}
|
||||
|
||||
LINPHONE_END_NAMESPACE
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue