Skip to content

Commit

Permalink
Merge pull request #133 from nim65s/devel
Browse files Browse the repository at this point in the history
Fix standard guard, fix #132
  • Loading branch information
jmirabel authored Sep 29, 2020
2 parents 8d9e202 + 9be3027 commit 241719a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ ENDIF(CMAKE_BUILD_TYPE MATCHES "DEBUG")
ADD_PROJECT_DEPENDENCY(Boost REQUIRED COMPONENTS thread)

# Search for dependecies.
ADD_PROJECT_DEPENDENCY(hpp-util REQUIRED PKG_CONFIG_REQUIRES "hpp-util >= 3.2")
ADD_PROJECT_DEPENDENCY(hpp-util 4.10.0 REQUIRED PKG_CONFIG_REQUIRES "hpp-util >= 4.10.0")
ADD_PROJECT_DEPENDENCY(pinocchio REQUIRED PKG_CONFIG_REQUIRES "pinocchio >= 2.1.10")
ADD_PROJECT_DEPENDENCY(Eigen3 REQUIRED "eigen3 >= 3.2.92")

Expand Down
2 changes: 1 addition & 1 deletion src/device.cc
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ namespace hpp {
#endif
}

#if __cplusplus > 201103L
#if __cplusplus >= 201103L
using boost::serialization::make_nvp;
using hpp::serialization::archive_device_wrapper;

Expand Down

0 comments on commit 241719a

Please sign in to comment.