You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/07/06 15:04:49 UTC

[plc4x] branch develop updated: - Fix the problems with the c++ logger build.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 40794c2  - Fix the problems with the c++ logger build.
40794c2 is described below

commit 40794c232d4c4b1674a39f656185f3edfe2268d3
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Sat Jul 6 17:04:41 2019 +0200

    - Fix the problems with the c++ logger build.
---
 plc4cpp/utils/logger/pom.xml                                        | 6 +++---
 .../src/main/cpp/org/apache/plc4x/cpp/utils/logger/ErrorCategory.h  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/plc4cpp/utils/logger/pom.xml b/plc4cpp/utils/logger/pom.xml
index ff366b3..36f1d50 100644
--- a/plc4cpp/utils/logger/pom.xml
+++ b/plc4cpp/utils/logger/pom.xml
@@ -92,18 +92,18 @@
           </execution>
           <!-- Actually executes the build -->
           <!-- Disabled for now till we figure out the reason for a compile error -->
-          <!--execution>
+          <execution>
             <id>cmake-compile</id>
             <phase>compile</phase>
             <goals>
               <goal>compile</goal>
             </goals>
             <configuration>
-              <!- The directory where the "generate" step generated the build configuration ->
+              <!-- The directory where the "generate" step generated the build configuration -->
               <projectDirectory>${project.build.directory}/build</projectDirectory>
               <classifier>${os.classifier}</classifier>
             </configuration>
-          </execution-->
+          </execution>
         </executions>
       </plugin>
 
diff --git a/plc4cpp/utils/logger/src/main/cpp/org/apache/plc4x/cpp/utils/logger/ErrorCategory.h b/plc4cpp/utils/logger/src/main/cpp/org/apache/plc4x/cpp/utils/logger/ErrorCategory.h
index 65abd48..ae55c83 100644
--- a/plc4cpp/utils/logger/src/main/cpp/org/apache/plc4x/cpp/utils/logger/ErrorCategory.h
+++ b/plc4cpp/utils/logger/src/main/cpp/org/apache/plc4x/cpp/utils/logger/ErrorCategory.h
@@ -20,7 +20,7 @@ under the License.
 #ifndef _ERRORCATEGORY_H_
 #define _ERRORCATEGORY_H_
 
-#include <boost\system\error_code.hpp>
+#include <boost/system/error_code.hpp>
 #include <string>
 
 namespace org