fix warning produced by new version of gcc

This commit is contained in:
Tiago Gomes 2012-11-01 22:54:14 +00:00
parent a1d0deb638
commit b8cef8798a

View File

@ -8,6 +8,8 @@
class LiftedOperator
{
public:
virtual ~LiftedOperator (void) { }
virtual double getLogCost (void) = 0;
virtual void apply (void) = 0;