diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-06-02 17:27:57 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-06-02 17:27:57 -0400 |
commit | 6d2d0c8ee59eed641937b19cf19a1ff08762cbfa (patch) | |
tree | 6128299f6ba14e7b41bcaf57e771a5a2f8b52f03 /indra/llinventory/llsettingsbase.cpp | |
parent | 53c89d9723b816d06516ae59d7e0f0d12e477ec9 (diff) |
SL-18837: Boost.Bind _1, _2 placeholders are no longer global.
This was a longstanding complaint: that Boost shouldn't dump the (somewhat
mysterious) _1, _2 et al. names into the global namespace. Recent Boost has
fixed that, requiring 'using namespace boost::placeholders;' if you want to
use them unqualified.
Diffstat (limited to 'indra/llinventory/llsettingsbase.cpp')
-rw-r--r-- | indra/llinventory/llsettingsbase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llinventory/llsettingsbase.cpp b/indra/llinventory/llsettingsbase.cpp index 936b166409..ba338dbbee 100644 --- a/indra/llinventory/llsettingsbase.cpp +++ b/indra/llinventory/llsettingsbase.cpp @@ -31,6 +31,10 @@ #include <algorithm> #include "llsdserialize.h" +#include <boost/bind.hpp> + +// allow unqualified _1, _2 et al. to mean boost::bind placeholders +using namespace boost::placeholders; //========================================================================= namespace |