summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2021-05-12 16:26:53 -0400
committerNat Goodspeed <nat@lindenlab.com>2021-05-12 16:26:53 -0400
commitd10badf0d23f48665239117838c5daf0fd667e01 (patch)
tree38eddb75cc6d1ff59fea6d7d1afb42707a3a133c
parent28862ab53b9e532bf6ff789743d80b33af10f395 (diff)
SL-10297: #include <string_view> in llsingleton.h
-rw-r--r--indra/llcommon/llsingleton.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h
index 2eb39c6c8c..163c08099f 100644
--- a/indra/llcommon/llsingleton.h
+++ b/indra/llcommon/llsingleton.h
@@ -27,14 +27,15 @@
#include <boost/noncopyable.hpp>
#include <boost/unordered_set.hpp>
+#include <initializer_list>
#include <list>
-#include <vector>
+#include <string_view>
#include <typeinfo>
+#include <vector>
#include "mutex.h"
#include "lockstatic.h"
#include "llthread.h" // on_main_thread()
#include "llmainthreadtask.h"
-#include <initializer_list>
class LLSingletonBase: private boost::noncopyable
{