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
This commit is contained in:
parent
e7824b3ed5
commit
08b9183d62
2 changed files with 6 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
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>
|
||||
|
||||
* include/bits/locale_facets.tcc (time_get::do_get_year):
|
||||
|
|
|
@ -1544,13 +1544,9 @@ namespace std
|
|||
{
|
||||
// Verify valid formatting code, attempt to extract.
|
||||
__c = __format[++__i];
|
||||
char __mod = 0;
|
||||
int __mem = 0;
|
||||
if (__c == 'E' || __c == 'O')
|
||||
{
|
||||
__mod = __c;
|
||||
__c = __format[++__i];
|
||||
}
|
||||
__c = __format[++__i];
|
||||
switch (__c)
|
||||
{
|
||||
const char* __cs;
|
||||
|
|
Loading…
Add table
Reference in a new issue