Commit b6f642d5 by Paolo Carlini Committed by Paolo Carlini

2002-02-02 Paolo Carlini <pcarlini@unitus.it>

	* testsuite/22_locale/operators.cc
	(gnu_collate::do_compare()): Add return statement to
	suppress "no return statement" warning.

From-SVN: r49441
parent 866c9e66
2002-02-02 Paolo Carlini <pcarlini@unitus.it>
* testsuite/22_locale/operators.cc
(gnu_collate::do_compare()): Add return statement to
suppress "no return statement" warning.
2002-02-01 Paolo Carlini <pcarlini@unitus.it>
* testsuite/27_io/ostream_manip.cc: Enable test02.
......
......@@ -54,7 +54,7 @@ class gnu_collate: public ccollate
protected:
virtual int
do_compare(const char*, const char*, const char*, const char*) const
{ ++gnu_count; }
{ ++gnu_count; return 0; }
};
void test02()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment