2019-09-05  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	3.0.0

2019-09-05  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	README_build: Refer MSVC users to MSVC_NMake/README.txt

2019-09-02  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	tuple_transform_each(): Fix for libc++

	Tuples which are input data to std::tuple_cat() are not declared const.
	Some versions of libc++ has a bug in std::tuple_cat(): All output
	elements coming from a const tuple become const.
	It can break 'make check' when using clang++ and -stdlib=libc++.

	Fixes issue #25

2019-09-01  Murray Cumming  <murrayc@murrayc.com>

	tests: Don't call static method via instance

2019-09-01  Murray Cumming  <murrayc@murrayc.com>

	tests: Remove an unnecessary semicolon

2019-08-29  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	tests/test_track_obj.cc: Remove obsolete comments

2019-08-29  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	bind(), track_obj() documentation: Remove obsolete restrictions

	The number of objects and arguments are not restricted to max 7
	now that variadic templates have replaced the .m4 files in libsigc++-2
	that generated 7 copies.

2019-07-03  Kjell Ahlstedt  <kjellahlstedt@gmail.com>

	tests/test_track_obj: Fix for clang++

	clang++ complains if private members are unused, so make them protected.

	error: private field 'bar_' is not used [-Werror,-Wunused-private-field]