MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / operator ==

Method operator ==

include/daScript/misc/smart_ptr.h:204–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202 return ptr != nullptr;
203 }
204 __forceinline bool operator == ( T * p ) const {
205 return ptr == p;
206 }
207 template <typename Y>
208 __forceinline bool operator == ( const smart_ptr<Y> & p ) const {
209 return ptr == p.get();

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected