Skip to content

Commit 3406c91

Browse files
committed
netstandard1.3 build fix
1 parent 94490a2 commit 3406c91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NReco.LambdaParser/Linq/LambdaParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ protected Lexem ReadLexem(string s, int startIdx) {
248248

249249

250250
static readonly ConstructorInfo LambdaParameterWrapperConstructor =
251-
typeof(LambdaParameterWrapper).GetTypeInfo().GetConstructor(new[] { typeof(object), typeof(LambdaParameterWrapperContext) });
251+
typeof(LambdaParameterWrapper).GetConstructor(new[] { typeof(object), typeof(LambdaParameterWrapperContext) });
252252

253253
protected ParseVarResult ParseVar(string expr, int start, Variables vars) {
254254
var varLexem = ReadLexem(expr, start);

0 commit comments

Comments
 (0)