From bacc983235060498078cf41855d785c43e05999e Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Thu, 14 Jun 2018 13:57:17 +0300 Subject: [PATCH] Disable examples that use C++11 features. --- example/Jamfile.v2 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 8bd9d51..9f0b1d8 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -13,6 +13,9 @@ exe custom_syntax : custom_syntax.cpp ; exe real : real.cpp ; exe regex : regex.cpp /boost/regex//boost_regex ; -exe config_file_types : config_file_types.cpp ; -exe env_options : env_options.cpp ; -exe options_heirarchy : options_heirarchy.cpp ; +# The following examples use C++ features beyond C++03. +# It would be possible to make compilation of each conditional on specific config check, +# for now just disable the compilation. +#exe config_file_types : config_file_types.cpp ; +#exe env_options : env_options.cpp ; +#exe options_heirarchy : options_heirarchy.cpp ;