Skip to content

Commit

Permalink
Debug CI environment
Browse files Browse the repository at this point in the history
Signed-off-by: Tin Švagelj <[email protected]>
  • Loading branch information
Caellian committed Apr 25, 2024
1 parent e491612 commit 672fa4e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/geometry.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,19 @@
#endif
#include <eigen3/Eigen/Core>

#if (defined(__cplusplus) && (__cplusplus > 201402L) || \
EIGEN_COMP_MSVC_LANG > 201402L)
#error C++14 should work
#elif (defined(__cplusplus) && (__cplusplus > 201103L) || \
EIGEN_COMP_MSVC >= 1910)
#error C++14 not supported; minimum version C++17 required
#elif (defined(__cplusplus) && (__cplusplus >= 201103L) || \
EIGEN_COMP_MSVC >= 1900)
#error C++11 not supported; minimum version C++17 required
#else
#error C++03 or older not supported; minimum version C++17 required
#endif

namespace conky {

/// @brief A 2D vector representation.
Expand Down

0 comments on commit 672fa4e

Please sign in to comment.