View | Details | Raw Unified | Return to bug 15718
Collapse All | Expand All

(-)/usr/include/boost/spirit/home/classic/core/impl/match.ipp.orig (-2 / +2 lines)
Lines 23-30 namespace boost { namespace spirit Link Here
23
    : len(length), val() {}
23
    : len(length), val() {}
24
24
25
    template <typename T>
25
    template <typename T>
26
    inline match<T>::match(std::size_t length, ctor_param_t val_)
26
    inline match<T>::match(std::size_t len_, ctor_param_t val_)
27
    : len(length), val(val_) {}
27
    : len(len_), val(val_) {}
28
28
29
    template <typename T>
29
    template <typename T>
30
    inline bool
30
    inline bool

Return to bug 15718