stop warnings

##hphp_471## isn't building. Lets try this. (It is also correct I think)
Esse commit está contido em:
Paul Tarjan
2013-06-02 10:52:11 -07:00
commit de sgolemon
commit ae636a0a85
+1 -1
Ver Arquivo
@@ -60,7 +60,7 @@ struct SrcKey : private boost::totally_ordered<SrcKey> {
return uint64_t(getFuncId()) << 32 | uint64_t(offset());
}
static SrcKey fromAtomicInt(AtomicInt in) {
return SrcKey { uint32_t(in >> 32), uint32_t(in & 0xffffffff) };
return SrcKey { uint32_t(in >> 32), (Offset) int32_t(in & 0xffffffff) };
}
void setFuncId(FuncId id) {