blob: 41200ca333b760b84822d9eb3204f7fbcf6ebb14 [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OfficeOpenXml.FormulaParsing.ExcelUtilities
{
public class LookupValueMatcher : ValueMatcher
{
protected override int CompareObjectToString(object o1, string o2)
{
return IncompatibleOperands;
}
}
}