MCPcopy Create free account
hub / github.com/Tripwire/tripwire-open-source / MergeIntoList

Function MergeIntoList

src/twparser/yyparse.cpp:70–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70static std::list<TSTRING>* MergeIntoList( std::list<TSTRING>* plistLHS, const std::list<TSTRING>* plistRHS )
71{
72 for( std::list<TSTRING>::const_iterator i = plistRHS->begin(); i != plistRHS->end(); i++ )
73 plistLHS->push_back( *i );
74 return plistLHS;
75}
76
77extern YYSTYPE yylval;
78#if YYDEBUG

Callers 1

yyparse.cppFile · 0.85

Calls 2

beginMethod · 0.80
endMethod · 0.80

Tested by

no test coverage detected