From 9b6ade6b1c4ae71117438a7e76cbf341d3f18e9b Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 7 Aug 2020 08:02:45 +0200 Subject: [PATCH] Fix a link issue (symbol not found). --- common/dsnlexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/dsnlexer.cpp b/common/dsnlexer.cpp index 941ffb4587..0a1f3d8e1e 100644 --- a/common/dsnlexer.cpp +++ b/common/dsnlexer.cpp @@ -230,7 +230,7 @@ LINE_READER* DSNLEXER::PopReader() } -inline int DSNLEXER::findToken( const std::string& tok ) +int DSNLEXER::findToken( const std::string& tok ) { KEYWORD_MAP::const_iterator it = keyword_hash.find( tok.c_str() );