diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-06-01 09:30:36 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 16:05:09 -0400 |
commit | 8961be780d5c5ffa4f9cfc8060756a1bac5fc69f (patch) | |
tree | 71c0c030df94a614b2a810b8cdb7559e805cf225 /indra | |
parent | 31d9930a0ff7da5a6312a8f47037052cd2d06bdb (diff) |
SL-11216: Try to pacify VS 2013.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index ef4500c01f..af70751b37 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3061,7 +3061,7 @@ LLSD LLAppViewer::getViewerInfo() const // is available to a getInfo() caller as to the user opening // LLFloaterAbout. LLSD info; - auto& versionInfo{ LLVersionInfo::instance() }; + auto& versionInfo(LLVersionInfo::instance()); info["VIEWER_VERSION"] = LLSDArray(versionInfo.getMajor())(versionInfo.getMinor())(versionInfo.getPatch())(versionInfo.getBuild()); info["VIEWER_VERSION_STR"] = versionInfo.getVersion(); info["CHANNEL"] = versionInfo.getChannel(); |