dynamic.h operator== claiming to do a deep equal comparison but its not · Issue #2424 · facebook/folly · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Maybe I am missing something but it seems to me that his is incorrect and no actual deep equal comparison? (I am looking for a built-in way to do a deep equal compare)
The text was updated successfully, but these errors were encountered:
In the
json/dynamic.h
its saying that the equal operator will do a deep equal comparison:folly/folly/json/dynamic.h
Lines 293 to 301 in 08d6d55
but looking into the implementation if the types are matching its just comparing the address:
folly/folly/json/dynamic.cpp
Lines 119 to 131 in 08d6d55
Maybe I am missing something but it seems to me that his is incorrect and no actual deep equal comparison? (I am looking for a built-in way to do a deep equal compare)
The text was updated successfully, but these errors were encountered: