Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/boost/format/format_class.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ namespace boost {
void make_or_reuse_data(std::size_t nbitems);// used for (re-)initialisation

// member data --------------------------------------------//
std::vector<format_item_t> items_; // each '%..' directive leads to a format_item
std::vector<bool> bound_; // stores which arguments were bound. size() == 0 || num_args
std::vector<format_item_t,typename Alloc::template rebind<format_item_t>::other > items_; // each '%..' directive leads to a format_item
std::vector<bool, typename Alloc::template rebind<bool>::other > bound_; // stores which arguments were bound. size() == 0 || num_args
Comment thread
glenfe marked this conversation as resolved.
Outdated

int style_; // style of format-string : positional or not, etc
int cur_arg_; // keep track of wich argument is current
Expand Down