rename string_ref -> string_view (string_ref is deprecated)

This commit is contained in:
bolero-MURAKAMI 2016-03-29 18:02:51 +09:00
parent 276b09f004
commit b5699163e8
25 changed files with 605 additions and 605 deletions

View file

@ -21,7 +21,7 @@
#include "../libs/variant/test/variant.cpp"
#include "../libs/algorithm/test/algorithm.cpp"
#include "../libs/random/test/random.cpp"
#include "../libs/utility/string_ref/test/string_ref.cpp"
#include "../libs/utility/string_view/test/string_view.cpp"
#include "../libs/cstring/test/cstring.cpp"
#include "../libs/net/test/endian.cpp"
@ -39,7 +39,7 @@ namespace testspr {
testspr::variant_test();
testspr::algorithm_test();
testspr::random_test();
testspr::string_ref_test();
testspr::string_view_test();
testspr::cstring_test();
testspr::endian_test();
}