coldtobi commented on a change in pull request #83:
URL: https://github.com/apache/logging-log4cxx/pull/83#discussion_r768849479



##########
File path: src/test/cpp/util/transformer.cpp
##########
@@ -116,14 +116,25 @@ void Transformer::createSedCommandFile(const std::string& 
regexName,
 
        std::string tmp;
 
+       auto sedsaniziter = [] (const std::string &in, const std::string 
&sedseperator = "Q") {

Review comment:
       should be fixed now by 38729af.

##########
File path: src/test/cpp/util/transformer.cpp
##########
@@ -116,14 +116,25 @@ void Transformer::createSedCommandFile(const std::string& 
regexName,
 
        std::string tmp;
 
+       auto sedsaniziter = [] (const std::string &in, const std::string 
&sedseperator = "Q") {
+               std::string ret = in;
+               std::string replace_to = "\\" + sedseperator;
+               size_t pos = 0;
+               while((pos = ret.find(sedseperator, pos)) != std::string::npos) 
{

Review comment:
       should be fixed now by 38729af.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@logging.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to