Opened 13 years ago
Closed 13 years ago
#3590 closed Patches (fixed)
boost\serialization\serialization.hpp(91) : warning C4100: 'ar' : unreferenced formal parameter
| Reported by: | Owned by: | Robert Ramey | |
|---|---|---|---|
| Milestone: | Component: | serialization | |
| Version: | Boost Development Trunk | Severity: | Cosmetic |
| Keywords: | Cc: |
Description
Minor warning, but flooding.
Patch:
Index: serialization/serialization.hpp =================================================================== --- serialization/serialization.hpp (revision 66) +++ serialization/serialization.hpp (working copy) @@ -88,7 +88,7 @@
load data required for construction and invoke constructor in place template<class Archive, class T> inline void load_construct_data(
- Archive & ar,
+ Archive & /*ar*/,
T * t, const BOOST_PFTO unsigned int /*file_version*/
){
Attachments (1)
Change History (2)
by , 13 years ago
| Attachment: | serialization_serialization.hpp.patch added |
|---|
comment:1 by , 13 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
| Type: | Bugs → Patches |
My copies are showing this as fixed.
Note:
See TracTickets
for help on using tickets.

Patch for the problem