From b924610e09dc6970bf0437ed96430f4b588886d5 Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Thu, 28 Aug 2014 10:07:26 +0200 Subject: [PATCH] Fix missing inline --- lest.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lest.hpp b/lest.hpp index 1108c76..dc172d2 100644 --- a/lest.hpp +++ b/lest.hpp @@ -267,7 +267,7 @@ struct expression_decomposer return std::regex_search( line, std::regex( re ) ); } #else - bool search( text part, text line ) + inline bool search( text part, text line ) { if ( part == "^\\*$" && "*" == line ) return true;