Skip to content

Commit

Permalink
Remove deprecated options for 1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Apr 12, 2019
1 parent 7d63e09 commit de71448
Show file tree
Hide file tree
Showing 141 changed files with 19 additions and 3,696 deletions.
36 changes: 6 additions & 30 deletions CMakeLists.txt
Expand Up @@ -972,22 +972,6 @@ hpx_option(HPX_WITH_VIM_YCM BOOL
################################################################################
# Backwards compatibility options (edit for each release)

# HPX_WITH_QUEUE_COMPATIBILITY: introduced in V1.1.0
hpx_option(HPX_WITH_QUEUE_COMPATIBILITY BOOL
"Enable old style queue components in API (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_QUEUE_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_QUEUE_COMPATIBILITY)
endif()

# HPX_WITH_SCOPED_UNLOCK_COMPATIBILITY: introduced in V1.1.0
hpx_option(HPX_WITH_SCOPED_UNLOCK_COMPATIBILITY BOOL
"Enable backwards compatibility for scoped_unlock utility (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_SCOPED_UNLOCK_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_SCOPED_UNLOCK_COMPATIBILITY)
endif()

# BADBAD: This enables an overload of swap which is necessary to work around the
# problems caused by zip_iterator not being a real random access iterator.
# Dereferencing zip_iterator does not yield a true reference but
Expand All @@ -1003,26 +987,18 @@ if(HPX_WITH_TUPLE_RVALUE_SWAP)
hpx_add_config_define(HPX_HAVE_TUPLE_RVALUE_SWAP)
endif()

# HPX_WITH_INCLUSIVE_SCAN_COMPATIBILITY: introduced in V1.1.0
# HPX_WITH_INCLUSIVE_SCAN_COMPATIBILITY: turned off in V1.3.0
hpx_option(HPX_WITH_INCLUSIVE_SCAN_COMPATIBILITY BOOL
"Enable old overloads for inclusive_scan (default: ON)"
ON ADVANCED)
"Enable old overloads for inclusive_scan (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_INCLUSIVE_SCAN_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_INCLUSIVE_SCAN_COMPATIBILITY)
endif()

# HPX_WITH_ALGORITHM_INPUT_ITERATOR_SUPPORT: introduced in V1.1.0
hpx_option(HPX_WITH_ALGORITHM_INPUT_ITERATOR_SUPPORT BOOL
"Enable weaker (non-conforming) iterator requirements for parallel algorithms (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_ALGORITHM_INPUT_ITERATOR_SUPPORT)
hpx_add_config_define(HPX_HAVE_ALGORITHM_INPUT_ITERATOR_SUPPORT)
endif()

# HPX_WITH_UNWRAPPED_COMPATIBILITY: introduced in V1.1.0
# HPX_WITH_UNWRAPPED_COMPATIBILITY: turned off in V1.3.0
hpx_option(HPX_WITH_UNWRAPPED_COMPATIBILITY BOOL
"Enable the deprecated unwrapped function (default: ON)"
ON ADVANCED)
"Enable the deprecated unwrapped function (default: OFF)"
OFF ADVANCED)
if(HPX_WITH_UNWRAPPED_COMPATIBILITY)
hpx_add_config_define(HPX_HAVE_UNWRAPPED_COMPATIBILITY)
endif()
Expand Down
22 changes: 0 additions & 22 deletions examples/queue/CMakeLists.txt

This file was deleted.

69 changes: 0 additions & 69 deletions examples/queue/queue_client.cpp

This file was deleted.

118 changes: 0 additions & 118 deletions hpx/lcos/queue.hpp

This file was deleted.

0 comments on commit de71448

Please sign in to comment.