2004-11-29 Paolo Carlini <pcarlini@suse.de>
* testsuite/21_strings/basic_string/capacity/char/18654.cc: Use
better names.
* testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc: Same.
From-SVN: r91469
+2004-11-29 Paolo Carlini <pcarlini@suse.de>
+
+ * testsuite/21_strings/basic_string/capacity/char/18654.cc: Use
+ better names.
+ * testsuite/21_strings/basic_string/capacity/wchar_t/18654.cc: Same.
+
2004-11-29 Paolo Carlini <pcarlini@suse.de>
PR libstdc++/18654
// Our current implementation provides exact shrink-to-size
// and shrink-to-fit (in the future, maybe this will change
// for short strings).
- size_type min = 2 << 0;
- size_type max = 2 << 20;
- for (size_type i = min; i <= max; i *= 2)
+ const size_type minsize = 2 << 0;
+ const size_type maxsize = 2 << 20;
+ for (size_type i = minsize; i <= maxsize; i *= 2)
{
string str(i, 'x');
str.reserve(3 * i);
}
}
-int main()
+int main()
{
test01();
return 0;
// Our current implementation provides exact shrink-to-size
// and shrink-to-fit (in the future, maybe this will change
// for short strings).
- size_type min = 2 << 0;
- size_type max = 2 << 20;
- for (size_type i = min; i <= max; i *= 2)
+ const size_type minsize = 2 << 0;
+ const size_type maxsize = 2 << 20;
+ for (size_type i = minsize; i <= maxsize; i *= 2)
{
wstring str(i, L'x');
str.reserve(3 * i);