From e07e8e65c680026aa9859a0fdc13751b0d18a6ed Mon Sep 17 00:00:00 2001 From: Alexander Zaitsev Date: Fri, 19 May 2017 18:50:03 -0600 Subject: [PATCH] Fixed references --- doc/algorithm.qbk | 1 + example/Jamfile.v2 | 2 +- test/Jamfile.v2 | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/algorithm.qbk b/doc/algorithm.qbk index becad46..8ce6685 100644 --- a/doc/algorithm.qbk +++ b/doc/algorithm.qbk @@ -68,6 +68,7 @@ Thanks to all the people who have reviewed this library and made suggestions for [include hex.qbk] [include is_palindrome.qbk] [include is_partitioned_until.qbk] +[include apply_permutation.qbk] [endsect] diff --git a/example/Jamfile.v2 b/example/Jamfile.v2 index 4512a53..100878c 100644 --- a/example/Jamfile.v2 +++ b/example/Jamfile.v2 @@ -22,4 +22,4 @@ exe clamp_example : clamp_example.cpp ; exe search_example : search_example.cpp ; exe is_palindrome_example : is_palindrome_example.cpp; exe is_partitioned_until_example : is_partitioned_until_example.cpp; - +exe apply_permutation_example : apply_permutation_example.cpp; diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index fad1578..0b5ae35 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -73,6 +73,9 @@ alias unit_test_framework # Is_partitioned_until tests [ run is_partitioned_until_test.cpp unit_test_framework : : : : is_partitioned_until_test ] + +# Apply_permutation tests + [ run apply_permutation_test.cpp unit_test_framework : : : : apply_permutation_test ] ; }