MCPcopy Create free account
hub / github.com/SqliteModernCpp/sqlite_modern_cpp / error_log

Function error_log

hdr/sqlite_modern_cpp/log.h:67–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65 template<class ...Handler>
66 typename std::enable_if<sizeof...(Handler)>=2>::type
67 error_log(Handler &&...handler) {
68 return error_log(detail::FunctorOverload<detail::WrapIntoFunctor<typename std::decay<Handler>::type>...>(std::forward<Handler>(handler)...));
69 }
70 template<class Handler>
71 typename std::enable_if<!detail::is_callable<Handler(const sqlite_exception&)>::value>::type
72 error_log(Handler &&handler) {

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls 3

make_shared_inferredFunction · 0.85
sqlite_exceptionClass · 0.85

Tested by

no test coverage detected