Opened 11 years ago

Closed 10 years ago

#6758 closed Bugs (fixed)

not all members was initialized by base_iteration_context constructor.

Reported by: wuye9036@… Owned by: Hartmut Kaiser
Milestone: To Be Determined Component: wave
Version: Boost 1.48.0 Severity: Problem
Keywords: Cc:

Description

This constructor (boost/wave/cpp_iteration_context.hpp, line 110):

base_iteration_context(ContextT& ctx_,

IteratorT const &first_, IteratorT const &last_, BOOST_WAVE_STRINGTYPE const &fname, std::size_t if_block_depth = 0, file_type type = main_file)

: first(first_), last(last_), real_filename(fname),

real_relative_filename(fname), filename(fname), line(1), emitted_lines(0), if_block_depth(if_block_depth), ctx(ctx_)

base_iteration_context::type is not initialized by the argument of construct type.

Change History (1)

comment:1 by Hartmut Kaiser, 10 years ago

Resolution: fixed
Status: newclosed

(In [78552]) Wave: Fixed #6758: not all members are initialized by base_iteration_context constructor.

Note: See TracTickets for help on using tickets.