MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / operator==

Method operator==

Kernel/include/refptr.h:105–110  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 }
104
105 inline bool operator==(const T* p){
106 if(obj == p){
107 return true;
108 }
109 return false;
110 }
111
112 inline bool operator!=(const T* p){
113 return !operator==(p);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected