diff options
author | 2009-10-30 10:46:41 +0100 | |
---|---|---|
committer | 2009-10-30 10:46:59 +0100 | |
commit | 182cf6e1e6d08c84cb695f85103c1a0f0ff7061b (patch) | |
tree | 3deff9dbeea946b30582053e8128820329ff61ab | |
parent | 937ea489964dff80403e075beca4928bdd75149f (diff) | |
download | paludis-182cf6e1e6d08c84cb695f85103c1a0f0ff7061b.tar.gz paludis-182cf6e1e6d08c84cb695f85103c1a0f0ff7061b.tar.xz |
Keep NamedValues sorted
-rw-r--r-- | paludis/repositories/e/eapi.cc | 2 | ||||
-rw-r--r-- | paludis/repositories/e/eapi.hh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/paludis/repositories/e/eapi.cc b/paludis/repositories/e/eapi.cc index 95f81ea..a33903c 100644 --- a/paludis/repositories/e/eapi.cc +++ b/paludis/repositories/e/eapi.cc @@ -169,9 +169,9 @@ namespace value_for<n::ignore_pivot_env_functions>(check_get(k, "ignore_pivot_env_functions")), value_for<n::ignore_pivot_env_variables>(check_get(k, "ignore_pivot_env_variables")), value_for<n::load_modules>(check_get(k, "load_modules")), - value_for<n::must_not_set_vars_starting_with>(check_get(k, "must_not_set_vars_starting_with")), value_for<n::must_not_change_after_source_variables>(check_get(k, "must_not_change_after_source_variables")), value_for<n::must_not_change_variables>(check_get(k, "must_not_change_variables")), + value_for<n::must_not_set_vars_starting_with>(check_get(k, "must_not_set_vars_starting_with")), value_for<n::no_s_workdir_fallback>(destringify_key<bool>(k, "no_s_workdir_fallback")), value_for<n::non_empty_variables>(check_get(k, "non_empty_variables")), value_for<n::rdepend_defaults_to_depend>(destringify_key<bool>(k, "rdepend_defaults_to_depend")), diff --git a/paludis/repositories/e/eapi.hh b/paludis/repositories/e/eapi.hh index 522de75..d500132 100644 --- a/paludis/repositories/e/eapi.hh +++ b/paludis/repositories/e/eapi.hh @@ -135,9 +135,9 @@ namespace paludis struct myoptions_number_selected_at_most_one; struct myoptions_number_selected_exactly_one; struct myoptions_requires; - struct must_not_set_vars_starting_with; struct must_not_change_after_source_variables; struct must_not_change_variables; + struct must_not_set_vars_starting_with; struct name; struct no_s_workdir_fallback; struct no_slot_or_repo; @@ -370,9 +370,9 @@ namespace paludis NamedValue<n::ignore_pivot_env_functions, std::string> ignore_pivot_env_functions; NamedValue<n::ignore_pivot_env_variables, std::string> ignore_pivot_env_variables; NamedValue<n::load_modules, std::string> load_modules; - NamedValue<n::must_not_set_vars_starting_with, std::string> must_not_set_vars_starting_with; NamedValue<n::must_not_change_after_source_variables, std::string> must_not_change_after_source_variables; NamedValue<n::must_not_change_variables, std::string> must_not_change_variables; + NamedValue<n::must_not_set_vars_starting_with, std::string> must_not_set_vars_starting_with; NamedValue<n::no_s_workdir_fallback, bool> no_s_workdir_fallback; NamedValue<n::non_empty_variables, std::string> non_empty_variables; NamedValue<n::rdepend_defaults_to_depend, bool> rdepend_defaults_to_depend; |