#pragma once

struct IntCompare
{
	bool operator()( const int int1, const int int2 ) const {
		return int1 == int2;
	}
};
