Skip to content

Commit

Permalink
Fixed #1091: Inconsistent error message
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Mar 28, 2014
1 parent 7a83138 commit 0694ccd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hpx/config.hpp
Expand Up @@ -69,9 +69,9 @@
///////////////////////////////////////////////////////////////////////////////
// Properly handle all preprocessing limits
#if !defined(HPX_LIMIT)
# define HPX_LIMIT 5
#elif (HPX_LIMIT <= 4)
# error "HPX_LIMIT is too low, it must be higher than 4"
# define HPX_LIMIT 4
#elif (HPX_LIMIT < 4)
# error "HPX_LIMIT is too low, it must be at least than 4"
#elif (HPX_LIMIT > HPX_MAX_LIMIT) && \
!defined(HPX_USE_PREPROCESSOR_LIMIT_EXPANSION)
# define HPX_USE_PREPROCESSOR_LIMIT_EXPANSION
Expand Down

0 comments on commit 0694ccd

Please sign in to comment.