Opened 10 years ago
Closed 10 years ago
#7022 closed Bugs (fixed)
Prevent tool Bug Fix.
| Reported by: | Owned by: | az_sw_dude | |
|---|---|---|---|
| Milestone: | Boost 1.52.0 | Component: | date_time |
| Version: | Boost 1.50.0 | Severity: | Problem |
| Keywords: | Cc: | yogen.saini@… |
Description (last modified by )
It is Prevent tool Bug Fix.In file boost/trunk/libs/date_time/src/gregorian/date_generators.cpp
the IF condition:
if(ele >= 1 || ele <= 5) {
return _nth_as_str[ele];
}
else {
return _nth_as_str[0];
}
is not used properly. Instead of "||
" in this if condition it should be "&&". Only by use of "&&" this condition makes sense.
Attachments (2)
Change History (7)
by , 10 years ago
| Attachment: | date_generators.cpp added |
|---|
comment:1 by , 10 years ago
| Description: | modified (diff) |
|---|
comment:2 by , 10 years ago
| Description: | modified (diff) |
|---|
comment:4 by , 10 years ago
| Milestone: | To Be Determined → Boost 1.52.0 |
|---|
comment:5 by , 10 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Fix for the reported Bug.