*** empty log message ***

This commit is contained in:
Mike Goslin 2000-11-13 22:16:06 +00:00
parent d702f8ef34
commit 7fde21f32b

View File

@ -12,6 +12,10 @@
class EXPCL_PANDAEXPRESS HashVal { class EXPCL_PANDAEXPRESS HashVal {
public: public:
uint get_value(int val) const {
if (val < 4 && val >= 0)
return hv[val];
}
uint hv[4]; uint hv[4];
}; };