mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
13 lines
305 B
C++
13 lines
305 B
C++
/* Copyright 2003-2008 ROBLOX Corporation, All Rights Reserved */
|
|
|
|
#include "BoostAppend.h"
|
|
|
|
#include "V8DataModel/PartInstance.h"
|
|
#include <boost/multi_index/hashed_index.hpp>
|
|
|
|
std::size_t boost::hash_value(const shared_ptr<RBX::PartInstance>& b)
|
|
{
|
|
boost::hash<void*> hasher;
|
|
return hasher(b.get());
|
|
}
|