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

Function check_ne

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

Source from the content-addressed store, hash-verified

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); }
340inline bool check_ne(const char* a, const char* b) { return ::fl::strcmp(a, b) != 0; }
341
342// SFINAE helper: stringify a value via sstream if possible, else "<?>".

Callers

nothing calls this directly

Calls 1

strcmpFunction · 0.85

Tested by

no test coverage detected