diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-02 17:32:31 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-02 17:32:31 -0400 |
commit | 42c69448da85b06caf9edabb4dd3f5f4ae926ea7 (patch) | |
tree | 260f153fb1d08f1d3bab429ab6d47c842cdb6d79 /indra | |
parent | 6d2d0c8ee59eed641937b19cf19a1ff08762cbfa (diff) |
SL-18837: Don't include a version-specific Boost.Regex header.
Let the umbrella <regex.hpp> header make that decision.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/lllogchat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index ba82ff0b0f..8c03292361 100644 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -41,7 +41,7 @@ #include <boost/algorithm/string/trim.hpp> #include <boost/algorithm/string/replace.hpp> -#include <boost/regex/v4/match_results.hpp> +#include <boost/regex.hpp> #include <boost/foreach.hpp> #if LL_MSVC |