MCPcopy Create free account
hub / github.com/Thalhammer/jwt-cpp / operator==

Method operator==

include/jwt-cpp/base.h:161–163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

159 padding operator+(const padding& p) { return padding(count + p.count, length + p.length); }
160
161 friend bool operator==(const padding& lhs, const padding& rhs) {
162 return lhs.count == rhs.count && lhs.length == rhs.length;
163 }
164 };
165
166 inline padding count_padding(const std::string& base, const std::vector<std::string>& fills) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected