Skip to content

Commit

Permalink
Fix use of stringize in runtime_config
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed Jul 24, 2017
1 parent f4aa568 commit 586a46c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/util/runtime_configuration.cpp
Expand Up @@ -240,7 +240,9 @@ namespace hpx { namespace util
"max_add_new_count = ${HPX_THREAD_QUEUE_MAX_ADD_NEW_COUNT:10}",
"max_delete_count = ${HPX_THREAD_QUEUE_MAX_DELETE_COUNT:1000}",
"max_terminated_threads = ${HPX_THREAD_QUEUE_MAX_TERMINATED_THREADS:"
BOOST_STRINGIZE(HPX_HAVE_SCHEDULER_MAX_TERMINATED_THREADS) "}",
HPX_PP_STRINGIZE(
HPX_PP_EXPAND(HPX_HAVE_SCHEDULER_MAX_TERMINATED_THREADS)
) "}",

"[hpx.commandline]",
// enable aliasing
Expand Down

0 comments on commit 586a46c

Please sign in to comment.