MCPcopy Create free account
hub / github.com/boostorg/parser / scoped_base_assign

Class scoped_base_assign

include/boost/parser/parser.hpp:2377–2386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2375
2376 template<typename BaseIter, typename Iter>
2377 struct scoped_base_assign
2378 {
2379 scoped_base_assign(BaseIter & base, Iter & it) :
2380 base_(base), it_(it)
2381 {}
2382 ~scoped_base_assign() { base_ = it_.base(); }
2383
2384 BaseIter & base_;
2385 Iter & it_;
2386 };
2387
2388 template<typename Parser>
2389 using has_parser_data_member_expr =

Callers 3

parser.hppFile · 0.85
prefix_parseFunction · 0.85
callback_prefix_parseFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected