param_package: Get rid of file-static std::string construction
Avoids potential dynamic allocation occuring during program launch
This commit is contained in:
parent
c1c9ab31e8
commit
474ec2ee5f
1 changed files with 4 additions and 3 deletions
|
@ -12,10 +12,11 @@ namespace Common {
|
||||||
|
|
||||||
constexpr char KEY_VALUE_SEPARATOR = ':';
|
constexpr char KEY_VALUE_SEPARATOR = ':';
|
||||||
constexpr char PARAM_SEPARATOR = ',';
|
constexpr char PARAM_SEPARATOR = ',';
|
||||||
|
|
||||||
constexpr char ESCAPE_CHARACTER = '$';
|
constexpr char ESCAPE_CHARACTER = '$';
|
||||||
const std::string KEY_VALUE_SEPARATOR_ESCAPE{ESCAPE_CHARACTER, '0'};
|
constexpr char KEY_VALUE_SEPARATOR_ESCAPE[] = "$0";
|
||||||
const std::string PARAM_SEPARATOR_ESCAPE{ESCAPE_CHARACTER, '1'};
|
constexpr char PARAM_SEPARATOR_ESCAPE[] = "$1";
|
||||||
const std::string ESCAPE_CHARACTER_ESCAPE{ESCAPE_CHARACTER, '2'};
|
constexpr char ESCAPE_CHARACTER_ESCAPE[] = "$2";
|
||||||
|
|
||||||
ParamPackage::ParamPackage(const std::string& serialized) {
|
ParamPackage::ParamPackage(const std::string& serialized) {
|
||||||
std::vector<std::string> pairs;
|
std::vector<std::string> pairs;
|
||||||
|
|
Loading…
Reference in a new issue