Skip to content
Snippets Groups Projects
Commit 0727519d authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

MAINT-5232: Correct forward declaration of LLSingleton_manage_master.

The forward declaration said it was a 'friend class', whereas the actual
definition is a struct. MSVC dislikes that.
parent 0ea1b2a1
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,7 @@ class LLSingletonBase: private boost::noncopyable
void add_master();
void remove_master();
// with a little help from our friends.
template <class T> friend class LLSingleton_manage_master;
template <class T> friend struct LLSingleton_manage_master;
// Maintain a stack of the LLSingleton subclass instance currently being
// initialized. We use this to notice direct dependencies: we want to know
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment