Commit d6f0bfb2 authored by baire's avatar baire
Browse files

disable m flag in perl regex

parent ccc64c27
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ public:


	Regex(const char* regex, int flags = 0)
	 : mSource (regex), mRegex (regex, boost::regex_constants::perl)
	 : mSource (regex), mRegex (regex, boost::regex_constants::perl | boost::regex_constants::no_mod_m)
	{
		//FIXME: remove flags ?
	}