mirror of
https://github.com/boostorg/unordered.git
synced 2025-11-02 16:51:39 +01:00
Replace all usages of boost::addressof with their std counterpart
This commit is contained in:
@@ -339,7 +339,7 @@ namespace test {
|
||||
bool operator!() const { return !ptr_; }
|
||||
|
||||
static ptr pointer_to(T& p) {
|
||||
return ptr(boost::addressof(p));
|
||||
return ptr(std::addressof(p));
|
||||
}
|
||||
|
||||
// I'm not using the safe bool idiom because the containers should be
|
||||
|
||||
Reference in New Issue
Block a user