MCPcopy Create free account
hub / github.com/SeisSol/SeisSol / flip_pair

Function flip_pair

preprocessing/meshing/cube_c/src/main.cpp:164–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

162
163template<typename A, typename B>
164std::pair<B,A> flip_pair(const std::pair<A,B> &p)
165{
166 return std::pair<B,A>(p.second, p.first);
167}
168
169void checkNcError(int error)
170{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected