Skip to content
Snippets Groups Projects
Commit 0a014776 authored by Nat Goodspeed's avatar Nat Goodspeed Committed by Andrey Lihatskiy
Browse files

DRTVWR-587: Pacify VS 2022 specifically.

parent 37a6b641
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -478,8 +478,10 @@ class LL_COMMON_API LLEventDispatcher ...@@ -478,8 +478,10 @@ class LL_COMMON_API LLEventDispatcher
LLSD callFail(ARGS&&... args) const LLSD callFail(ARGS&&... args) const
{ {
mParent->callFail<LLEventDispatcher::DispatchError>(std::forward<ARGS>(args)...); mParent->callFail<LLEventDispatcher::DispatchError>(std::forward<ARGS>(args)...);
#if _MSC_VER < 1930 // pre VS 2022
// pacify the compiler // pacify the compiler
return {}; return {};
#endif // pre VS 2022
} }
}; };
typedef std::map<std::string, std::unique_ptr<DispatchEntry> > DispatchMap; typedef std::map<std::string, std::unique_ptr<DispatchEntry> > DispatchMap;
......
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