Commit 08b9183d by Paolo Carlini Committed by Paolo Carlini

locale_facets.tcc (time_get::_M_extract_via_format): __mod is only assigned,…

locale_facets.tcc (time_get::_M_extract_via_format): __mod is only assigned, never used its value, remove it.

2003-10-30  Paolo Carlini  <pcarlini@suse.de>

	* include/bits/locale_facets.tcc (time_get::_M_extract_via_format):
	__mod is only assigned, never used its value, remove it.

From-SVN: r73081
parent e7824b3e
2003-10-30 Paolo Carlini <pcarlini@suse.de>
* include/bits/locale_facets.tcc (time_get::_M_extract_via_format):
__mod is only assigned, never used its value, remove it.
2003-10-29 Paolo Carlini <pcarlini@suse.de> 2003-10-29 Paolo Carlini <pcarlini@suse.de>
* include/bits/locale_facets.tcc (time_get::do_get_year): * include/bits/locale_facets.tcc (time_get::do_get_year):
......
...@@ -1544,13 +1544,9 @@ namespace std ...@@ -1544,13 +1544,9 @@ namespace std
{ {
// Verify valid formatting code, attempt to extract. // Verify valid formatting code, attempt to extract.
__c = __format[++__i]; __c = __format[++__i];
char __mod = 0;
int __mem = 0; int __mem = 0;
if (__c == 'E' || __c == 'O') if (__c == 'E' || __c == 'O')
{ __c = __format[++__i];
__mod = __c;
__c = __format[++__i];
}
switch (__c) switch (__c)
{ {
const char* __cs; const char* __cs;
......
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