MCPcopy Create free account
hub / github.com/FastLED/FastLED / check_eq

Function check_eq

tests/shared/fl_unittest.h:336–336  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334// Note: already inside namespace fl::test
335template<typename A, typename B>
336inline bool check_eq(const A& a, const B& b) { return detail::SafeCompare<A, B>::eq(a, b); }
337inline bool check_eq(const char* a, const char* b) { return ::fl::strcmp(a, b) == 0; }
338template<typename A, typename B>
339inline bool check_ne(const A& a, const B& b) { return detail::SafeCompare<A, B>::ne(a, b); }

Callers

nothing calls this directly

Calls 1

strcmpFunction · 0.85

Tested by

no test coverage detected